ive got the following code, that obviously isn't working...
if ($REQUEST_METHOD=="POST") {
# double-up apostrophes
$gig = str_replace("'","''",$gig);
$SQL = " INSERT INTO gigs ";
$SQL = $SQL . " (with, place, price, info, tickets, day,
month, year, date, ticketweb, way-ahead, ticketmaster) VALUES ";
$SQL = $SQL . " ('$place','$price','$info','$tickets','$day','$month','$year','$doors','$date','$with','$ticketweb','$way-ahead','$ticketmaster') ";
it says that there is a error on line 1!
any ideas?