Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\Program Files\Apache Group\Apache2\htdocs\admin\user_trackingresults.php on line 10
That error means your query failed to execute. Try adding some debugging:
PHP Code:
$resultq1 = mysql_query($queryq1) or die("Query Failed: $queryq1 - " mysql_error());
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be."
~ Terry Pratchett in Nation
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be."
~ Terry Pratchett in Nation
$queryq1 = "Select * from user_info WHERE username = '$requesteduser'";
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be."
~ Terry Pratchett in Nation
Bookmarks