Jump to content

mysql query doesn't like my phpmyadmin fields


theagonizer

Recommended Posts

this works fine

$result = mysql_query("SELECT ID, title, src, description FROM images WHERE ID = 0");
$row = mysql_fetch_array($result);

 

 

however this...

 

$result = mysql_query("SELECT ID, title, src, description, order FROM images WHERE ID = 0");
$row = mysql_fetch_array($result);
..

 

did not work when I added the order field to the table in phpmyadmin. Then it returns "Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource. even though there is an order field." I have noticed that if I turn the "order" field from an int to a type varchar it then works. any ideas?

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.