会員登録画面で以下のようにコードを記入した時、
Notice: Undefined index: image in /Applications/MAMP/htdocs/post/join/index.php on line 18
と表示されます。
input要素の「name」属性には"image"を指定しますし、なぜこのようなエラーが起きるのでしょうか?
また、対処法も教えていただきたいです。
PHP
1<?php 2session_start(); 3 4if(!empty($_POST)) { 5 //エラー項目の確認 6 if($_POST["name"] === "") { 7 $error["name"] = "blank"; 8 } 9 if($_POST["email"] === "") { 10 $error["email"] = "blank"; 11 } 12 if(strlen($_POST["password"]) < 4) { 13 $error["password"] = "length"; 14 } 15 if($_POST["password"] === "") { 16 $error["password"] = "blank"; 17 } 18 $file = $_FILES["image"]; 19 if(!empty($file["name"])) { 20 $ext = substr($file["name"], -3); 21 if ($ext != "jpg" && $ext != "gif") { 22 $error["image"] = "type"; 23 } 24 } 25 26 if(empty($error)) { 27 //画像をアップロードする 28 $image = date("YmdHis").$_file["name"]; 29 move_uploaded_file($file["tmp_name"],"../member_picture/".$image); 30 $_SESSION["join"] = $_POST; 31 $_SESSION["join"]["image"] = $image; 32 header("Location: check.php"); 33 exit(); 34 } 35} 36?> 37<p>次のフォームに必要事項をご記入ください。</p> 38<form action="" method="post" enctype="multipart/form-date"> 39 <dl> 40 <dt>ニックネーム<span class="required">(必須)</span></dt> 41 <dd> 42 <input type="text" name="name" size="35" maxlength="255" value="<?php echo htmlspecialchars(filter_input(INPUT_POST,"name"), ENT_QUOTES); ?>"> 43 <?php if(isset($error["name"]) && $error["name"] ==="blank"): ?> 44 <p class="error">*ニックネームを入力してください</p> 45 <?php endif; ?> 46 </dd> 47 <dt>メールアドレス<span class="required">必須</span></dt> 48 <dd> 49 <input type="text" name="email" size="35" maxlength="255" value="<?php echo htmlspecialchars(filter_input(INPUT_POST,"email"), ENT_QUOTES); ?>"> 50 <?php if(isset($error["email"]) && $error["email"] === "blank"): ?> 51 <p class="error">*メールアドレスを入力してください</p> 52 <?php endif; ?> 53 </dd> 54 <dt>パスワード<span class="required">必須</span></dt> 55 <dd> 56 <input type="password" name="password" size="10" mexlength="20" value="<?php echo htmlspecialchars(filter_input(INPUT_POST,"password"), ENT_QUOTES); ?>"> 57 <?php if(isset($error["password"]) && $error["password"] === "blank"): ?> 58 <p class="error">*パスワードを入力してください</p> 59 <?php endif; ?> 60 <?php if(isset($error["password"]) && $error["password"] === "length"): ?> 61 <p class="error">*パスワードは4文字以上で入力してください</p> 62 <?php endif; ?> 63 </dd> 64 <dt>写真など</dt> 65 <dd> 66 <input type="file" name="image" size="35"> 67 <?php if(isset($error["image"]) && $error["image"] === "type"): ?> 68 <p class="error">*写真などは「.gif」または「.jpg」の画像を指定してください</p> 69 <?php endif; ?> 70 <?php if(!empty($error)): ?> 71 <p class="error">*恐れいりますが、画像を改めて指定してください</p> 72 <?php endif; ?> 73 </dd> 74 </dl> 75 <div><input type="submit" value="入力内容を確認する"></div> 76</form> 77
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/22 21:36