「よくわかるphpの教科書」と言う書籍を購入し、現在転職活動を行うために勉強しているのですが、「Twitter風一言掲示板を作成する」と言うチャプターでエラーが出て困っています。
書跡を見返してもコードは書籍と一緒なので、多分書籍のコードが間違ってるのかな?とは思っているのですが、どこが間違っているのかわかりません。
優しい方教えて下さい。
error
Notice: Undefined variable: error in /Applications/MAMP/htdocs/Bulletin board/join/index.php on line 15
Notice: Trying to access array offset on value of type null in /Applications/MAMP/htdocs/Bulletin board/join/index.php on line 15
Notice: Undefined index: password in /Applications/MAMP/htdocs/Bulletin board/join/index.php on line 20
Notice: Undefined index: password in /Applications/MAMP/htdocs/Bulletin board/join/index.php on line 23
php
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="UTF-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>勉強中</title> 8 <link rel="stylesheet" href="css/style.css"> 9</head> 10<body> 11<?php 12session_start(); 13if(!empty($_POST)){ 14 if($_POST['name'] == ''){ 15 $error['name'] == 'blank'; 16} 17if($_POST['email'] == ''){ 18 $error['email'] = 'blank'; 19} 20if(strlen($_POST['password']) < 4){ 21 $error['password'] = 'length'; 22} 23if($_POST['password'] == ''){ 24 $error['password'] = 'blank'; 25} 26if(empty($error)){ 27 $_SESSION['join'] = $_POST; 28 header('Location: check.php'); 29 exit(); 30} 31} 32?> 33 <p>次のフォームに必要事項をご記入下さい。</p> 34 <form action="" method="post" enctype="multipart/form-date"> 35 <dl> 36 <dt>ニックネーム<span class="required">必須</span></dt> 37 <dd><input type="text" name="name" size="35" maxlength="255" /></dd> 38 <dt>メールアドレス<span class="required">必須</span></dt> 39 <dd><input type="text" name="email" size="35" maxlength="255" /></dd> 40 <dt>パスワード<span class="required">必須</span></dt> 41 <dd><input type="password" name="password size="10" maxlength="20" /></dd> 42 <dt>写真置き場</dt> 43 <dd><input type="file" name="image" size="35" /></dd> 44 </dl> 45 <div><input type="submit" value="入力画面を確認します。" /></div> 46 </form> 47</body> 48</html>
回答2件
あなたの回答
tips
プレビュー