Mysql
 sql >> Database >  >> RDS >> Mysql

Dati non memorizzati utilizzando dichiarazioni preparate

Suggerirei di avvolgere l'intero bind_param ed eseguire con una condizione if poiché l'istruzione non verrà preparata se si verifica anche un problema minore. In questo caso immagino che potrebbe essere che i tipi per ogni variabile/campo siano sbagliati a un certo punto - probabilmente l'image / b parte.

Puoi fare eco al tipo di ciascuno usando gettype che potrebbe aiutare a rintracciarlo:

echo gettype($first), gettype($email), gettype($phone),
     gettype($school), gettype($dob), gettype($father), 
     gettype($feereceived), gettype($due), gettype($image);


$db = new mysqli("localhost", "root","","learndb");

if ($db->connect_error) {
    die("Connection failed this is the error: " . $db->connect_error);
}

$stmt = $db->prepare("INSERT INTO studentrecords (`Name`, `email`, `Phone`, `school`,`dob`,`father`,`feereceived`,`due`,`image`) VALUES (?,?,?,?,?,?,?,?,?)");

if($stmt) {
    $stmt->bind_param("ssisssiib",$first,$email,$phone,$school,$dob,$father,$feereceived,$due,$image);
    $stmt->execute();
} else {
    echo 'Failed to prepare the sql statement';
}