how to use for loop in table? first i want to get the number of name from user, then i want to put it in rows...
my code:
echo"<form method='POST' action=''>
<table border=1>
for($i=0; $i<$NameCount; $i++)
<tr><td>$name[$i]</td></tr>
</table>
</form> ";
cannot work...
Help...