Entry
What casues the error Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result
Oct 26th, 2003 13:43
Alexander Berkman, Debby Baker,
Well, the argument supplied to mysql_fetch_row is not a valid result
index. Look Below:
$connection = mysql_connect(host, name, pass);
mysql_select_db("my_database");
$query = "SELECT * FROM my_table";
$result_index = mysql_query($query, $connection);
$row = mysql_fetch_row($result_index);
Are you passing a proper result index to mysql_fetch_row()??