After runnign the SQL commands, I get this when I open the page in a browser.....
""
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /var/www/html/trade/fileadmin.php on line 68
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/trade/fileadmin.php:68) in /var/www/html/trade/fileadmin.php on line 205
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/trade/fileadmin.php:68) in /var/www/html/trade/fileadmin.php on line 206
""
Any ideas?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
On the line before 68, look at the sql query. Have it do a mysql_query() or die(mysql_error());
This way it will tell you what is wrong with the query before it tries to use the query resource. If you still need help after that, paste the error message from sql here.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
After runnign the SQL commands, I get this when I open the page in a browser.....
""
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /var/www/html/trade/fileadmin.php on line 68
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/trade/fileadmin.php:68) in /var/www/html/trade/fileadmin.php on line 205
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/trade/fileadmin.php:68) in /var/www/html/trade/fileadmin.php on line 206
""
Any ideas?
On the line before 68, look at the sql query. Have it do a mysql_query() or die(mysql_error());
This way it will tell you what is wrong with the query before it tries to use the query resource. If you still need help after that, paste the error message from sql here.