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

Im getting this error 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 'to, from, message, read) VALUES ('3','2','testmessage','0')' at line 1.

Ive been at this for hours and found nothing here at SO or any other sites. Thanks in advance for any help. below is the file which is a simple messaging system.

<?php
session_start();
$id = $_SESSION['id'];
$msg = $_POST['message'];
$theirs = $_POST['value'];
$read = 0;

$con = mysql_connect("127.0.0.1","root","");
mysql_select_db("test", $con);
if (!$con)
  die('Could not connect: ' . mysql_error());

$sql = "INSERT INTO  messages (to, from, message, read) VALUES ('$theirs','$id','$msg','$read')";

if (!mysql_query($sql,$con))
  die('Error: ' . mysql_error());

mysql_close($con);
share|improve this question
1  
Your code is vulnerable to SQL injection attacks! – markus Dec 29 '12 at 23:31
3  
Do NOT use the deprecated, insecure, inefficient mysql_* API anymore, instead use mysqli or PDO with prepared statements. – markus Dec 29 '12 at 23:31
i know, this was just a test. ill escape later and build vallidation and parameters. i just wanted to start somwhere – ArthasNed_StarkGimli Dec 29 '12 at 23:32
Can you tell me what page I can access this on the web? – Cole Johnson Dec 29 '12 at 23:37
my guess is that you have some character that is braking your query, probably in $msg, do the mysql_real_escape_string to your values before insert and put values in curly braces (example {$msg}) – vodich Dec 29 '12 at 23:38

2 Answers

up vote 5 down vote accepted

to, from and read are reserved words in MySQL. Quote them with backticks

INSERT INTO  messages (`to`, `from`, `message`, `read`) VALUES ('$theirs','$id','$msg','$read')
share|improve this answer
nice, good point! – vodich Dec 29 '12 at 23:39
read is also a reserved word. – Arjan Dec 29 '12 at 23:41
@Arjan Thank you, fixed. – Olaf Dietsche Dec 29 '12 at 23:43
gosh im a noob i didnt even think of that! thanks for a good answer – ArthasNed_StarkGimli Dec 29 '12 at 23:46

from, to and read are MySQL reserved words. It's best not to use them as column names (otherwise you must enclose them in backticks) but use other column names.

Instead of from you could use sender, and use recipient instead of to. Also change read into is_read and you're fine.

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.