私はしばらくの間、この mysqli ステートメントにこだわっています。何が問題なのかわかりません。エラーが表示されるので、どこが間違っているのかがわかります。
このエラーの解決方法を教えてください。エラーを表示する方法を教えてください。エラーを修正できます。
これは私のコードです
$add_record = $db->prepare('UPDATE vehicles SET name= ?, VINnum= ?, maker= ?, model= ?, color= ?, year= ?, oilChange= ?, registrationExp= ?, insuranceExp= ?, dailyRate= ?, weekleyRate= ?, monthleyRate= ?, currentMillage= ?, oilChangeMillage= ?, licensePlate= ?, vehicleCost= ? WHERE Vehicles_id = ?');
$add_record->bind_param('sssssisssdddsssdi', $name, $VIN, $maker, $model, $color, $year, $oilChange, $registration, $insurance, $dailyRate, $weekleyRate, $monthleyRate, $currentMillage, $changeOilMillage, $plate, $cost, $id);
if( $add_record->execute() ){
$pass_list = '<li>Good to go</li>';
} else {
$error_list .= '<li>SQL error</li>';
echo $db->error;
}