Dear all ,
See following code :
<form name="whatever" action ="test.php" METHOD="Post">
<input type='text' name='row1'><BR>
<input type='text' name='row2'><BR>
<INPUT TYPE="Submit" VALUE="Submit" >
</form>
this is test.php
<?php echo $row1;
echo $row2; ?>
Suppose I have 1000 rows than the test.php would be :
echo $row1;
....
echo $row1000;
Can I make a lus like :
for ($i=1; i<=1000; $i++) {
echo $row$i;
}
This is not working but I wonder if there is a solution for this???
THX for the Help
Gerry