Arghhh I'm having one of those days today.
Why won't my INSERT statement work?
$sql = "INSERT INTO JOB (jobid, title, description, location, skills, salary, industry) VALUES (\"$jobid\", \"$title\", \"$description\", \"$location\", \"$skills\", \"$salary\", \"$industry\")";
$sql_result = mysql_query($sql, $connection) or die("Sorry couldn't add job posting to table");
If I echo the statement I get this:
INSERT INTO JOB (jobid, title, description, location, skills, salary, industry) VALUES ("6", "2", "3", "4", "5", "6", "Accounting")Sorry couldn't add job posting to table
Any ideas?