Jump to content

Recommended Posts

Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\homeloginvariables.php on line 22

 

 

Im getting this error but im unsure why...

 

 

its relating to this part of the code:

 

$result = mysql_query($sql);

 

$row = mysql_fetch_assoc($result);

$UserId = $row["UserID"];

 

 

 

its meant to put the field from the table row into the the variable... :/

Link to comment
https://forums.phpfreaks.com/topic/64292-error-to-do-with-mysql-result/
Share on other sites

There is an error in your query. Change this:

$result = mysql_query($sql);

 

to:

$result = mysql_query($sql) or die(mysql_error());

 

This will print the error that mysql is returning.

 

If you show the value of your $sql string, we might be able to help you debug it.

Ok i got this result:

 

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM userregistration WHERE userstatus = 1' at line 2

 

 

even though line 2 is the connect to DB code

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.   Restore formatting

  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...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.