Posted by Patrick on 05/30/06 14:58
I'm trying to while loop using a flat txt file and write the values out
into a form. I have 50-58 values to echo. Am I going to have to echo
each line of html. Or is there a way to make this work between the php.
Right now it wants to write the whole table over and over. Is my logic
screwed up? I am not a programmer as such but can get by. I have
something like this which is an abbreviated version. Any help would be
appreciated.
Thanks,
Patrick
<html>
<head>
<?
$filename = "C10AB_precruise.log";
$larray = file($filename);
?>
</head>
<body>
<?
$i=0;
while ($i <= 60)
{
?>
<form method="post" action="precmlog.php">
<table width="800" cellpadding="5" cellspacing="0" border="0">
<tr>
<td width="40%">
Log sheet completed by:<br> <input class="inform" type="text"
size="30" name="person" value="<?php echo $larray[$i]; ?>"><br>
</td>
</tr>
<tr>
<td>
Cruise name/number:<br> <input class="inform" type="text" size="30"
name="cruisenum" value="<?php echo $larray[$i]; ?>"><br>
</td>
</tr>
<tr>
<td>
Ship name:<br> <input class="inform" type="text" size="30"
name="shipname" value="<?php echo $larray[$i]; ?>"><br>
</td>
</tr>
</table>
<input class="button" type="submit" value="Submit">
</form>
<?
}
$i++;
?>
</body>
</html>
--
Patrick A. Smith Assistant System Administrator
Ocean Circulation Group – USF - College of Marine Science
http://ocgweb.marine.usf.edu Phone: 727 553-3334
The trouble with doing something right the first time is that nobody
appreciates how difficult it was. - La Rochefoucauld
Navigation:
[Reply to this message]
|