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

What is wrong with this query?

$query3 = "INSERT INTO Users 
             ('Token','Long','Lat') 
           VALUES 
             ('".$token."','".$lon1."','".$lat."')";
share|improve this question
Do you also execute it with mysql_query() ? – Sandro Meier Apr 30 '11 at 16:46
give us the complete query please. how can we know what $token, $lon1 and $lat are? – Alp Apr 30 '11 at 16:46
3  
I don't know. What is wrong with this query? i.e. what happens when you use it? – Oli Charlesworth Apr 30 '11 at 16:47
Yes. $result3=mysql_query($query3); – flaviusilaghi Apr 30 '11 at 16:47
It looks like a SQL problem, Could you provide the Users DB schema? – mdaguerre Apr 30 '11 at 16:47
show 1 more comment

3 Answers

up vote 6 down vote accepted

You have several issues with this.

  1. Column names should be backtick escaped, not quoted (also LONG is a datatype in MySQL hence it's reserved and must be backtick-escaped).
  2. You have SQL injection problems if those arguments aren't escaped.
  3. You should provide us with the result of mysql_error() if it's not working.

Try running this code:

$token   = mysql_real_escape_string($token);
$lon1    = mysql_real_escape_string($lon1);
$lat     = mysql_real_escape_string($lat);

$query3  = "INSERT INTO `Users` (`Token`, `Long`, `Lat`) 
           VALUES ('{$token}', '{$lon1}', '{$lat}')";
$result3 = mysql_query($query3) or die("Query Error: " . mysql_error());

If that still doesn't work, give us the error message that's produced.

share|improve this answer
Thanks.This worked – flaviusilaghi Apr 30 '11 at 17:02

Long is the mysql reserved word and reserved words needs to be enclosed in backticks

$query3 = "INSERT INTO Users 
             (`Token`,`Long`,`Lat`) 
           VALUES 
             ('".$token."','".$lon1."','".$lat."')";
share|improve this answer
.. and enclosing field names in quotes won't work. – Lightness Races in Orbit Apr 30 '11 at 17:09
@Tom: That is already shown in my answer but without any words hope you see this as well – Positive Apr 30 '11 at 17:11
@ShaktiSingh: I see it. Does the guy asking the question see it? – Lightness Races in Orbit Apr 30 '11 at 17:11
@Tom: I hope that if one who do not see will put a comment as question – Positive Apr 30 '11 at 17:13
@ShaktiSingh: Hard for someone to ask about something he knows nothing about. And he clearly knows nothing about it, because he wrote this question. – Lightness Races in Orbit Apr 30 '11 at 17:15
show 1 more comment
  1. You're using single quotes around your field names. This isn't valid in any SQL variant I know of. Either get rid of them or quote the field names in the correct way for your SQL flavor.
  2. Your code likely has an SQL injection vulnerability, unless you left out the code that escapes $token etc
  3. You shouldn't be putting values into the SQL string like that. This isn't the 1990s - we have parametrized queries now.
  4. The mysql_ functions make it a bit difficult to do queries properly. Switch to either mysqli or PDO.
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.