11-06-2007, 01:52 AM
|
#1 (permalink)
|
|
The Wanderer
Join Date: Nov 2007
Posts: 22
Thanks: 0
|
Problem with code
Hey guys,
I am working on a script and this portion of code throws back and error, and I can't seem to figure out why, any help would be appreciated!
Code:
$recordset = mysql_query('SELECT id, date, title, description FROM news WHERE id = '.$_GET['id'].' LIMIT 1;') or die(mysql_error());
$row = mysql_fetch_array($recordset);
Error:
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 'LIMIT 1' at line 1
|
|
|
|