Jump to content
MakeWebGames

Recommended Posts

Posted

I am making a big report system, but for some reason i am getting this error:

 

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/thelib/public_html/bugreport.php on line 45

 

These are the lines:

else
{
$q=mysql_query("SELECT * FROM bugreport WHERE '{$_GET['ID']}'==bugid ORDER BY bugid ASC",$c);
$r=mysql_fetch_array($q);

 

Help please!

Posted

Re: MySQL fetch array

theres a working bug report system somewhere on these boards... looking at that code you posted, only thing that i can see that may be a prob is this

'{$_GET['ID']}'==bugid

switch it around

bugid=='{$_GET['ID']}'

Posted

Re: MySQL fetch array

Ok thanks, will try that. Do you not need the $c? O its on all of the files i downloaded with it, so i just leave it on.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...