Quote:
Originally Posted by xEX3CUT1ONx
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\upload_members.php on line 87, Line 87 is
|
This typically indicates that there was no result from your query, but that you're going ahead anyway and trying to use the (non-existent) result. It's possible that this line:
$fetch_files = mysql_query("SELECT * FROM 'uploaded' WHERE submit_user = $curr_user ORDER BY ID");
needs to be changed to this:
$fetch_files = mysql_query("SELECT * FROM uploaded WHERE submit_user = '$curr_user' ORDER BY ID");
(remove quotes around 'uploaded' and place quotes around '$curr_user')