Jump to content

[SOLVED] SQL Date


dan2684

Recommended Posts

I'm trying to insert data into a table in my databse and it's proving to be more diffucult that it should be!

 

Here is my code:

 

$fromDate = "20-20-2009";
$toDate = "20-20-2009";
$sql = "INSERT INTO shows (from, to, venue, stand, area)
VALUES ('$fromDate', '$toDate', '{$_POST['venue']}', '{$_POST['stand']}', '{$_POST['area']}')";

if(!mysql_query($sql)){
       echo mysql_error();
}

 

It's giving me this 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 'from, to, venue, stand, area) VALUES ('20-20-2009'..."

 

Any help would be greatly appreciated!

 

Thanks in advance,

 

Dan

Link to comment
https://forums.phpfreaks.com/topic/173720-solved-sql-date/
Share on other sites

Both from and to are reserved keywords - http://dev.mysql.com/doc/refman/5.0/en/reserved-words.html

 

While you can make them work, you should avoid using reserved keywords as column names and the best solution would be to rename those to something else.

 

Link to comment
https://forums.phpfreaks.com/topic/173720-solved-sql-date/#findComment-915733
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.