This posting does not post correctly to the DB....what do i need to do to get this to each display as seperate entries ($rows of entries) with only the ONE submit button?
here is my table:
<table border="2" width="100%"><tr><td>
<form method="post" action="<?php echo $PHP_SELF?>" onSubmit="return Validator(this);">
<?php
for($i=0;$i<$rows;$i++) {
?>
<table width="100%" border="0">
<tr><td>
Verify Club Name (check box): <INPUT TYPE="text" NAME="$club" value="<?php echo $clubname ?>"></b>
First Name: <input type="Text" name="first" size="10">
Last Name: <input type="Text" name="last" size="10">
Age: <input type="Text" name="age" size="5">
Sex: <SELECT NAME="sex">
<OPTION VALUE="">
<OPTION VALUE="Male">Male
<OPTION VALUE="Female">Female
</SELECT>
Race: <SELECT NAME="race">
<OPTION VALUE="">
<OPTION VALUE="tba">tba
<OPTION VALUE="tba">tba
<OPTION VALUE="tba">tba
</SELECT><br><br>
<hr><br>
</td></tr>
</table>
<?php
}
?>
</form><input type="Submit" name="submit" value="enter information">
</td></tr></table>
thank you very much for all your help!
-=Michael