MacMyDay
08-07-2003, 10:17 AM
I have this form which consists of the following:
<TR><TD><input type=text name='name' style='width:80px;'></TD>
<TD><input type=text name='blah' style='width:90px;'></TD>
<TD><input type=text name='blahblah' style='width:200px;'></TD>
<TD><select NAME='rating'>
<option VALUE=''> -- Rating --
<OPTION VALUE='Blah'>Blah
<OPTION VALUE='Blah'>Blah
</select><br>
What I want to do is to have it displayed as many times as there are results in the database for that user. All I know at the moment is it'd start with $query = mysql_query ("select * from list where username='$blah'");
Thanks in advance.
<TR><TD><input type=text name='name' style='width:80px;'></TD>
<TD><input type=text name='blah' style='width:90px;'></TD>
<TD><input type=text name='blahblah' style='width:200px;'></TD>
<TD><select NAME='rating'>
<option VALUE=''> -- Rating --
<OPTION VALUE='Blah'>Blah
<OPTION VALUE='Blah'>Blah
</select><br>
What I want to do is to have it displayed as many times as there are results in the database for that user. All I know at the moment is it'd start with $query = mysql_query ("select * from list where username='$blah'");
Thanks in advance.