Re: [PHP] walking through database one record at a time with forms.

2003-07-23 Thread Marek Kilimajer
Better would be to make combos (reject, accept) and then submit them all at once. Displaying a separate html page for each row is slow and pain to work with. Artoo wrote: I'm tring to create a script for the WEBMASTER to go through a temporary table in a MySQL database, and either accept or rej

RE: [PHP] walking through database one record at a time with forms.

2003-07-23 Thread Luis Lebron
From: Artoo [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 10:38 AM To: [EMAIL PROTECTED] Subject: [PHP] walking through database one record at a time with forms. I'm tring to create a script for the WEBMASTER to go through a temporary table in a MySQL database, and either

[PHP] walking through database one record at a time with forms.

2003-07-23 Thread Artoo
I'm tring to create a script for the WEBMASTER to go through a temporary table in a MySQL database, and either accept or reject the data submitted by users. $sql = mysql_query("SELECT * FROM temp_table"); $result = mysql_num_rows($sql); Then with, while($row = mysql_fetch_array($sql)) { ... ...