I am trying to insert a new record into a mysql database and get the following 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 '30, 60, 90, DayCreated) VALUES ( 'Rush Shirt', '6-30-09','7-30-09','8-30-09','5-' at line 1
Using this code in php:
$sql = "INSERT INTO table_name ( FeeName, 30, 60, 90, DayCreated)
VALUES ( '$_POST[txtFee]', '$_POST[txt30]','$_POST[txt60]','$_POST[txt90]','$_POST[txtDayC]' )";
I searched the forums and the internet and couldn't find the correct syntax to fix this :(