When doing a simple insert into an MYSQL database, I get this error
"Unknown column 'Af452OtQa' in 'field list'"
'Af452OtQa' is the value that I'm attempting to insert into the column 'serialnum' All the variables are set from POST values from the previous page, and all are urlencoded except for this field, which I create the value for and thus, know that it won't have anything but alphanumerics in it.
$insertSQL = sprintf("INSERT INTO Presentations ('serialnum', 'docurl', 'tracker', 'recipient', 'last_accessed') VALUES (%s, %s, %s, %s, %s,)",
$sn,$doc,$trackr,$recip,$lastacc);