コードを使用する
# the data we want to insert
$data = array($first_name, $last_name, $email_from, $telephone, $dateofbirth, $addresslone, $addressltwo, $townnm, $countynm, $typeapp, $issubscribed);
$STH = $dbh->prepare("INSERT INTO members (fname, sname, email, phone, dob, addressl1, addressl2, town, county, type, subscribed) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
$STH->execute($data);
?>
<!--<!DOCTYPE html>
<head><title></title></head><body> commented out during testing -->
Thank you for contacting us We will be in touch with you very soon.
<!-- </body></html> -->
ユーザーには成功メッセージが表示されます。
お問い合わせいただきありがとうございます。すぐにご連絡いたします。
phpエラーは記録されていません。
これは、このデータベースに挿入することです
エラー報告は、PDOtrycatchの形式です。
catch(PDOException $e)
{
echo $e->getMessage();
}
完全に機能しているように見えますが、データベースは更新を受信できないようです。:/