Jump to content

[SOLVED] Wrong Syntax???


savagenoob

Recommended Posts

I dont know what the heck is going on. This is a simply query and it is saying "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 'InOut = Out' at line 1"... cannot figure out why it is saying this. Here is the code snippet...

$employee = $_SESSION['SESS_MEMBER_ID'];
$inout = $_POST['punch'];
$query = "INSERT INTO timeclock SET Employee='$employee', InOut='$inout'";
$result = mysql_query($query);

Link to comment
https://forums.phpfreaks.com/topic/140948-solved-wrong-syntax/
Share on other sites

Yeah, but this doesnt work either... "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 'InOut) VALUES ('2','Out')' at line 1". Its like mysql is bugging out or something. Here is the query "INSERT INTO timeclock (Employee,InOut) VALUES ('2','Out')".

Link to comment
https://forums.phpfreaks.com/topic/140948-solved-wrong-syntax/#findComment-737746
Share on other sites

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.