Jump to content

[SOLVED] SQL Syntax error


mike12255

Recommended Posts

I have the following code:

 

$id=$_GET['id'];

$query  = "SELECT locked FROM forumtutorial_posts WHERE postid = $id";

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

    $record = mysql_fetch_assoc($result);

if ($record['locked'] < 1 ){

if(isset($_POST['submit']))

 

and when i run it on my server i get the 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 '' at line 1

 

idk i cant see anything wrong, but then again im really tired. Thanks for the help :D

Link to comment
https://forums.phpfreaks.com/topic/141403-solved-sql-syntax-error/
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.