Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an error when inserting into the database.

Code:

dbquery("INSERT INTO site_news_comments (articleid,title,short,comment,timestamp,userid,main,type,topstory) VALUES ($article,'".clean($commentss['title'])."','','".mysql_real_escape_string($_POST['comment'])."',current_timestamp,'".USER_ID."','0','".$commentss['type']."','')");

Ignore the dbquery, works exactly as mysql_query.

The error I am receiving is:

 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 ''title','short','

No idea why this error is being thrown!

share|improve this question
why dont u put all the data into variable first. much more easier to INSERT later. e.g: $title = clean($commentss['title']) – s3polz Oct 4 '12 at 3:21
can you print just the query and see how it is built before executing – Deepak Oct 4 '12 at 3:23

4 Answers

up vote 2 down vote accepted

Teaching a man how to fish.

If a query fails, the first thing you should do is to echo the query you're about to send:

$sql = "INSERT INTO site_news_comments (articleid,title,short,comment,timestamp,userid,main,type,topstory) VALUES ($article,'".clean($commentss['title'])."','','".mysql_real_escape_string($_POST['comment'])."',current_timestamp,'".USER_ID."','0','".$commentss['type']."','')";

echo $sql;

It's usually pretty obvious what's wrong with the final query; pay particular attention to the dynamic stuff in your query and generally around the area where MySQL complains about.

If that still looks okay, then you look for words that might need escaping, such as the reserved words.

Conclusion

Having looked at the code mysql, I would have to conclude that the problem lies with $article and it causes problems in your query. You should probably escape it as well, just in case :)

Recommendation

You should learn about PDO / mysqli and using prepared statements:

// PDO example
$stmt = $db->prepare('INSERT INTO site_news_comments (articleid, title, short, comment, timestamp, userid, main, type, topstory) VALUES (:article, :title, :short, :comment, CURRENT_TIMESTAMP, :user, :main, :type, :topstory)');
$stmt->execute(array(
    ':article' => $article,
    ':title' => $commentss['title'],
    ':short' => '',
    ':comment' => $_POST['comment'],
    ':user' => USER_ID,
    ':main' => 0,
    ':type' => $commentss['type'],
    ':topstory' => '',
));
share|improve this answer
Article is not empty, as it is defined in the URL, and the other stuff to do with the article show. – zuc0001 Oct 4 '12 at 3:30
@zuc0001 read the rest of the answer too, echo the query and look at it – Jack Oct 4 '12 at 3:30
Ok, I did a query. It came out ok, except for one error for $_POST['comment'] (but thats because I didn't submit the form), but there was an error at the $article, instead of the articleid being '1', it had '1/'. Any ideas? – zuc0001 Oct 4 '12 at 3:36
@zuc0001 add the echoed query to your question so that we all can take a look ... but obviously, 1/ would cause an issue :) – Jack Oct 4 '12 at 3:41
I fixed the problem, read my answer ^^ – zuc0001 Oct 4 '12 at 3:43
show 4 more comments
//change this line :
dbquery("INSERT INTO site_news_comments (articleid,title,short,comment,timestamp,userid,main,type,topstory) VALUES ($article,'".clean($commentss['title'])."','','".mysql_real_escape_string($_POST['comment'])."',current_timestamp,'".USER_ID."','0','".$commentss['type']."','')");

//to this : (surround $articleid with single quote)
dbquery("INSERT INTO site_news_comments (articleid,title,short,comment,timestamp,userid,main,type,topstory) VALUES ('".$article."','".clean($commentss['title'])."','','".mysql_real_escape_string($_POST['comment'])."',current_timestamp,'".USER_ID."','0','".$commentss['type']."','')");
share|improve this answer

EDIT
I read too quickly the first time around; The error does not appear to be in the column list, it looks like it's in the value list. The only place the query can have a syntax error is if $article is empty (or un-sanitized data, such as non-numeric). Try adding quotes around it in the query and/or verifying it has at least a default value:

$article = (empty($article) || !is_numeric($article)) ? 0 : $article;
dbquery("... VALUES ('".$article."', '".clean($commentss['title'])."', '', '".mysql_real_escape_string($_POST['comment'])."', current_timestamp, '".USER_ID."', '0', '".$commentss['type']."', '')");

Original Answer

There is a list of reserved words used by MySQL that, if you use them for column names, you have to escape them with backticks.

Try updating all of them to fix:

dbquery("INSERT INTO site_news_comments (`articleid`, `title`, `short`, `comment`, `timestamp`, `userid`, `main`, `type`, `topstory`) VALUES ...
share|improve this answer
Thank for that. Although I am still getting the exactly same error. Its being used on a "news" system for my website. When you post a comment from the "frontpage" of the article, it inserts ok. But when you insert it from another page of comments, such as page 2, it throws the error. I do not know why though. – zuc0001 Oct 4 '12 at 3:27
-1. Although it's good advice to escape column names, it's not the root cause. – Jack Oct 4 '12 at 3:29
@Jack Yeah, I actually went through all of his column-names compared to the reserved-words list and none of them matched (except timestamp, but that's an "okay" one); I updated my answer, but it actually looks like yours beat me to the punch =P – newfurniturey Oct 4 '12 at 3:34

Thanks for the help guys! But I fixed the problem!

It seems that the cause of the problem was of the "URL". The URL was

news/1/&page=2

So when I inserted the $article, it came as '1/', this was because it thought that the ID was 1/ , not 1 because of the URL.

So I've just changed it to

news/1&page=2

Thanks!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.