I can't imagine what I'm doing wrong here. I've tried all I can think of!
mysql_query("INSERT INTO cancellations (description) VALUES(". $_POST['description'] . ")") or die(mysql_error());
The error is "Unknown column 'test' in 'field list'" (where 'test' is the value of $POST['description']).
I know I've done this in the past, it must have been slightly different.
What am I missing?
Thanks for the help!