Jump to content

mysql syntax error


ballhogjoni

Recommended Posts

I keep getting this error: Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /home/realfina/public_html/thediaperbakery/left_nav.php on line 11

 

this is my code:

mysql_connect('localhost',$username,$password);
									@mysql_select_db($database) or die( "Unable to select database");
									$query = mysql_query('SELECT * FROM leftNavigation WHERE ID = 1');
									while ($row = mysql_fetch_assoc($query)) { // line 11
									$Category = $row["Category"];
									}

Link to comment
https://forums.phpfreaks.com/topic/58428-mysql-syntax-error/
Share on other sites

Always check your query succeeds before trying to use any result it produces.

 

<?php

  mysql_connect('localhost',$username,$password);
  mysql_select_db($database) or die( "Unable to select database");
  if ($result = mysql_query('SELECT * FROM leftNavigation WHERE ID = 1')) {
    if (mysql_num_rows($result)) {
      while ($row = mysql_fetch_assoc($result)) {
        $Category = $row["Category"];
      }
    }
  } else { // good place to debug.
    echo mysql_error();
  }

?>

 

Where is $database defined?

Link to comment
https://forums.phpfreaks.com/topic/58428-mysql-syntax-error/#findComment-289722
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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