Jump to content

[SOLVED] Extremely Simple usage of INSERT just wont work


Slips

Recommended Posts

Hi,

 

I've encountered this really frustrating problem which wont allow me to do a mysql insert, it started off with a bigger code with variables and arrays but finally i started erasing lines and finally came down to this and it still gives me a sql syntax error!!!! Help would be greatly appreciated, since i have been stuck on this for an hour now, yes an hour.

 

The error i get 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 'key,state) VALUES('key','value')' at line 2

 

If i try the exact same code and just replace the tablename with some other table and its respective fieldnames, it works just fine, its like as if this code doesnt like the current table.

 

I tried recreating the table and it didnt help.

 

:confused:

 

 

 

 

<?php
require 'dbconnect.php';
mysql_select_db($generaldb,$link);
mysql_query("INSERT INTO locationkeys
(key,state) VALUES('key','value') ") 
or die(mysql_error());  
?>

Link to comment
Share on other sites

Damn, i never would have guessed that..Thanks a ton. In my opinion mysql shouldnt allow us the create the table in the first place if it contains that fieldname. The error statement is kinda misleading..

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.