入力した値をDBに登録するプログラムを書いています。
そして条件として入力した値が空ではない場合のみに処理が行われるように書いております。
・解決したいこと
Notice: Undefined index
のエラーを解決したいです。
入力フォームに記述がなかった場合にエラーメッセージを表示させたいのですがNotice: Undefined index: name in ~ post.php on line 15
のエラーが直接post.phpにアクセスした時に表示されます。
1<!DOCTYPE html> 2 <html lang="ja"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>フォーム</title> 6 </head> 7 <body> 8 <form method="post" action="task_11_post.php"> 9 <div>name<input type="text" name="name"></div> 10 <div>height<input type="text" name="height"></div> 11 <div>birthday<input type="text" name="birthday"></div> 12 <div><input type="submit" name="submit" value="送信" class="button"></div> 13 </form> 14 </body> 15 </html>
1 <?php 2 $errors = array(); 3 if (isset($_POST['submit']) && $_POST['submit'] === "送信") { 4 if (empty($_POST['name'])) { 5 $errors['name'] = '名前を入力してください'; 6 } 7 if (empty($_POST['height']) || !is_numeric($_POST['height'])) { 8 $errors['height'] = '数値を入力してください'; 9 } 10 if (empty($_POST['birthday'])) { 11 $errors['birthday'] = '誕生日を入力してください'; 12 } 13 } 14 15 $name = $_POST['name']; 16 $height = $_POST['height']; 17 $birthday = $_POST['birthday']; 18 19 $dsh = 'xxxxxx'; 20 $user = 'xxxxx'; 21 $password = 'xxxxx'; 22 23 try { 24 $dbh = new PDO($dsh, $user, $password); 25 } catch (PDOException $e) { 26 echo '接続失敗:' . $e->getMessage(); 27 die(); 28 } 29 $result = null; 30 if (empty($errors)) { 31 $sql = "INSERT INTO users (name, height, birthday) VALUES (:name, :height, :birthday)"; 32 $stmt = $dbh->prepare($sql); 33 $params = array(':name' => $name, ':height' => $height, ':birthday' => $birthday); 34 $check = $stmt->execute($params); 35 if ($check) { 36 $result = 'データが挿入されました。'; 37 } else { 38 $result = '挿入失敗'; 39 } 40 } 41 ?> 42 43 <!DOCTYPE html> 44 <html lang="ja"> 45 <head> 46 <meta charset="UTF-8"> 47 <title>POST</title> 48 </head> 49 <body> 50 <?php foreach ($errors as $error) : ?> 51 <li><?php echo $error; ?></li> 52 <?php endforeach; ?> 53 <?php echo $result; ?> 54 <p>name:<?php echo $name; ?></p> 55 <p>height:<?php echo $height; ?></p> 56 <p>birthday:<?php echo $birthday; ?></p> 57 <button type="button" onclick="history.back()">戻る</button> 58 </body> 59 </html>
試したこと
$errors = array();の部分が空の配列なのでそれにより定義されていない配列の要素を使用したためおきたエラーだと解釈しております。
解決策としてhttps://hacknote.jp/archives/22216/などのサイトを参考にしましたがうまく解決できませんでした。
よくされる質問の一つだと思うのですがアドバイスいただきたいです。
どうぞよろしくお願いいたします。
回答3件
あなたの回答
tips
プレビュー