RE: [PHP] Backing Up Tables Using PHP

2003-03-25 Thread Jennifer Goodie
ou fetch the first result and replace the for statement with while ($result_sql_daily = mysql_fetch_array($run_sql_daily)){ -Original Message- From: Guru Geek [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 2:12 PM To: [EMAIL PROTECTED] Subject: [PHP] Backing Up Tables Using PHP He

[PHP] Backing Up Tables Using PHP

2003-03-25 Thread Guru Geek
Hello, Trying to author my own PHP database table back up utility. A very simple one at that... Here's my sql statement to select everything in the table: $sql_daily = "SELECT * FROM dailytable"; $run_sql_daily = mysql_query($sql_daily); $result_sql_daily = mysql_fetch_array($run_sql_daily); H