TL\DR
La tua query non riesce a prepare()
. Devi capire dove, come e perché. Guarda l'ultimo blocco di codice di questa risposta e facci sapere qual è l'errore.
Inizierò con la query. Stai tentando di accedere a una parola riservata MySQL. Devi avvolgerli in backtick come questo:
$add = "INSERT INTO books (title, edited, created, ip,".
" email_to, twitter, last_taken, questions_total, responses, ".
"show_progress, need_correct, go_back, state, send_stats, ".
"show_number, imported) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ".
"?, ?, ?, ?, ?, ?, ?)";
Ora stai istanziando la variabile $stmt
all'interno del if
blocco ma poi provando a associarlo al di fuori di quel blocco. Dovrai cambiare questo:
if ($stmt = $mysqli->prepare($add)) {
....
}
$stmt->bind_param(....);
A questo:
if ($stmt = $mysqli->prepare($add)) {
....
$stmt->bind_param(....);
}
Inoltre, assicurati che la tua query si stia effettivamente preparando correttamente:
if ($stmt = $mysqli->prepare($add)) {
$stmt->bind_param("siisssiiiiiiiiii", $title, $edited, $created, $ip, $email_to, $twitter, $last_taken, $questions_total, $responses, $show_progress, $need_correct, $go_back, $state, $send_stats, $show_number, $importedVal);
// execute it and all...
} else {
die("Errormessage: ". $mysqli->error);
}
Poi facci sapere cosa succede.