PHPで会員登録フォームを作成しているのですが、
$stmt->execute();
実行してくれません…
phpに詳しい方教えていただけますと幸いです。
該当のソースコード
<?php try{ if(isset($_POST["name"])){ $first_name = $_POST["first_name"]; $last_name = $_POST["last_name"]; $name = $_POST["name"]; $e_mail = $_POST["e_mail"]; $password = $_POST["password"]; $telphone = $_POST["telphone"]; $address1 = $_POST["address1"]; $address2 = $_POST["address2"]; $country = $_POST["country"]; $prefecture = $_POST["prefecture"]; $post = $_POST["post"]; $job = $_POST["job"]; $age = $_POST["age"]; $sex = $_POST["sex"]; $category = $_POST["category"]; $dsn = 'mysql:dbname=samurai;host=localhost'; $user = 'root'; $password = ''; $dbh=new PDO ($dsn,$user,$password); $sql = 'INSERT INTO `users` (`id`, `first_name`, `last_name`, `name`, `e-mail`,`password`,`telphone`,`address1`, `address2`, `country`, `prefecture`, `post`, `job`, `age`, `sex`, `category`,`date`) VALUES (NULL, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,current_timestamp());'; $stmt = $dbh->prepare($sql); $stmt->bindParam(1,$first_name); $stmt->bindParam(2,$last_name); $stmt->bindParam(3,$name); $stmt->bindParam(4,$e_mail); $stmt->bindParam(5,$password); $stmt->bindParam(6,$telphone); $stmt->bindParam(7,$address1); $stmt->bindParam(8,$address2); $stmt->bindParam(9,$country); $stmt->bindParam(10,$prefecture); $stmt->bindParam(11,$post); $stmt->bindParam(12,$job); $stmt->bindParam(13,$age); $stmt->bindParam(14,$sex); $stmt->bindParam(15,$category); echo $category; $stmt->execute(); echo $stmt->execute()); } }catch (PDOException $e){ print('Error:'.$e->getMessage()); die(); } ?>
試したこと
$stmt->execute();の前後をechoで挟んでみたのですが、 $stmt->execute();の上は動きましたが、下のエコーは動きませんでした…
なので$stmt->execute();が動いないのかと…
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答3件
あなたの回答
tips
プレビュー