1

コードを使用する

# 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エラーは記録されていません。

これは、このデータベースに挿入することですMQL列

エラー報告は、PDOtrycatchの形式です。

catch(PDOException $e)
    {
    echo $e->getMessage();
    }

完全に機能しているように見えますが、データベースは更新を受信できないようです。:/

4

1 に答える 1

5

データベース構造のスクリーンショットに従ってtable name is memberyou used membersyour insert query

于 2012-11-03T17:24:17.150 に答える