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());  
?>

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.