前提・実現したいこと
phpの教本で勉強していて、form.htmlファイルで入力したデータをデータベースに保存したいのですが、保存できません。
何度も見直しているのですが、まったく分かりません。
ぜひ、ご教授お願い致します。
発生している問題・エラーメッセージ
送信ボタンを押すと、なぜか前回指定していたファイルが開いてしまうのでエラーは表示されていません。
ちなみに、add.phpを直接開くと,
Warning: Undefined array key "recipe_name" in C:\xampp\htdocs\yasashiiphp\add.php on line 4 Warning: Undefined array key "howto" in C:\xampp\htdocs\yasashiiphp\add.php on line 5 Warning: Undefined array key "category" in C:\xampp\htdocs\yasashiiphp\add.php on line 6 Warning: Undefined array key "budget" in C:\xampp\htdocs\yasashiiphp\add.php on line 7 Warning: Undefined array key "difficulty" in C:\xampp\htdocs\yasashiiphp\add.php on line 8 エラー発生: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'recipe_name' cannot be null
こんなエラーが出ます。
add.phpファイル <?php $user = '●●●'; $pass = '●●●'; $recipe_name = $_POST['recipe_name']; $howto = $_POST['howto']; $category = (int)$_POST['category']; $budget = (int)$_POST['budget']; $difficulty = (int)$_POST['difficulty']; try { $dbh = new PDO('mysql:host=localhost;dbname=db1;charset=utf8', $user, $pass); $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $sql = "INSERT INTO recipes (recipe_name, category, difficulty, budget, howto) VALUES (?, ?, ?, ?, ?)"; $stmt = $dbh->prepare($sql); $stmt->bindValue(1, $recipe_name, PDO::PARAM_STR); $stmt->bindValue(2, $category, PDO::PARAM_INT); $stmt->bindValue(3, $difficulty, PDO::PARAM_INT); $stmt->bindValue(4, $budget, PDO::PARAM_INT); $stmt->bindValue(5, $howto, PDO::PARAM_STR); $stmt->execute(); $dbh = null; echo 'レシピの登録は完了しました。'; } catch (PDOException $e) { echo 'エラー発生: ' . htmlspecialchars($e->getMessage(), ENT_QUOTES) . '<br>'; exit; } ?>
form.html <!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>入力フォーム</title> </head> <body> 入力フォーム<br> <form method="post" action="add.php"> 料理名:<input type="text" name="recipe_name" required><br> カテゴリ: <select name="category"> <option hidden>選択してください</option> <option value="1">和食</option> <option value="2">中華</option> <option value="3">洋食</option> </select> <br> 難易度: <input type="radio" name="difficulty" value="1">簡単 <input type="radio" name="difficulty" value="2" checked>普通 <input type="radio" name="difficulty" value="3">難しい <br> 予算:<input type="number" min="1" max="9999" name="budget">円 <br> 作り方: <textarea name="howto" cols="40" rows="4" maxlength="320"></textarea> <br> <input type="submit" value="送信"> </form> </body> </html>
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
add.phpとform.htmlは同じフォルダにありますか?
コードやエラーはマークダウンのcode機能を利用してご提示ください。
https://teratail.com/questions/238564
add.phpとform.htmlは同じフォルダに入っています。
回答1件
あなたの回答
tips
プレビュー