これをデータベーステーブルに挿入すると、非常に奇妙なエラーが表示されます。 )。このエラーの原因は他に何か?私はPDO PHPに移りました。PDOエラー:致命的なエラー:挿入値リストが列リストと一致しません
私のコードは次のとおりです。
$sql2 = "INSERT INTO `10 yeah plus windows`(`adults in property`, `age`, `alternative number`, `date of appointment`, `debt`, `employment status`, `energy spend`, `homeowner`, `lead id`, `notes`, `number of doors`, `number of windows`, `time of appointment`, `windows last replaced`) VALUES ('?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?')" ;
$result = $conn->prepare($sql2);
$count = $result->execute(array($_POST['adultsinproperty'], $_POST['age'], $_POST['alternativenumber'], $_POST['appdate'], $_POST['debt'], $_POST['employmentstatus'], $_POST['energy'], $_POST['homeowner'], $last_id, $_POST['notes'], $_POST['number_of_doors'], $_POST['number_of_windows'], $_POST['apptime'], $_POST['windowslastreplaced']));
は、私はそれが私であったか愚か信じることができないおかげでみんな、ありがとうございました。 – Lazza
私の答えを受け入れることを忘れないでください。 –