First order of business was to parse the data file into arrays, and then echo it to a page. No problem there, and after googling forms, I figured out how to dynamically create a table, and populate it with data and textboxes. That is where I hit a brick wall.
All my table cells are too big because the standard textbox seems to have a blank line under it, as if <BR> was after the textbox. I have no idea how to correct that.
Then I realized that there are many sites I have visited, this one included, that has that perfect textbox I want. Single pixel border, flat appearance, no mysterious line-feed under it.
Can someone tell me where I can find the information I need to use that type of textbox in my project? It would make it look so much "cleaner", and I would be able to view much more information without having to scroll so much.
Thanks for the time.
Here is a snippet from my PHP page
CODE
?>
<table border="1" width="900" id="table1" cellspacing="0" cellpadding="0">
<?
foreach ($headlist as $piece)
{
$t1=explode(chr(7), $piece)?>
<tr>
<td height="10" width="200">
<?echo rtrim($t1[0])?>
</td>
<td align="left" height="0" width="700">
<form method="post">
<input type="textbox" style="border: none" size=50 name="<?echo rtrim($t1[0])?>" value="<?echo rtrim($t1[1])?>">
</td>
</form>
</tr>
<?
$headdata[rtrim($t1[0])]=rtrim($t1[1]);
}
?></table><?
Hop
