前提・実現したいこと
PHPで会員登録画面を作っています。
必須入力情報にエラーメッセージを表示したいのですが、表示できません。
また、コードの最終行にend of fileのエラーが表示されます。
発生している問題・エラーメッセージ
syntax error, unexpected end of file
該当のソースコード
<?php session_start(); if(!empty($_post)){ if($_POST['name']===''){ $error['name']='blank'; } if($_post['email']===''){ $error['email']='blank'; } if(strlen($_post['passeord'])<4){ $error['password']='length'; } if($_post['password']===''){ $error['password']='blank'; } if(empty($error)){ $_SESSION['join']=$_post; header('Location:check.php'); exit(); } } ?> <!DOCTYPE html><html lang="ja">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>会員登録</title> <link rel="stylesheet" href="../style.css"> </head> <body> <div id="wrap"> <div id="head"> <h1>会員登録</h1> </div> <div id="content"> <p>次のフォームに必要事項をご記入ください。</p> <form action="" method="post" enctype="multipart/form-data"> <dl> <dt>ニックネーム<span class="required">必須</span></dt> <dd> <input type="text" name="name" size="35" maxlength="255" value="<?php print(htmlspecialchars($_post['name'],ENT_QUOTES));?>"/> <?php if($error['name']=='blank'):?> <p class="error">ニックネームを入力してください</p> <?php endif;?> </dd> <dt>メールアドレス<span class="required">必須</span></dt> <dd> <input type="text" name="email" size="35" maxlength="255" value="<?php print(htmlspecialchars($_post['email'],ENT_QUOTES));?>"/> <?php if($error['email']==='blank'):?> <p class="error">emailを入力してください</p> <?php endif;?> </dd> <dt>パスワード<span class="required">必須</span></dt> <dd> <input type="password" name="password" size="10" maxlength="20" value="<?php print(htmlspecialchars($_post['password'],ENT_QUOTES));?>"/> <?php if($error['password']==='length'):?> <p class="error">passwordは4文字以上で入力してください</p> <?php endif;?> <?php if($error['password']==='blank'):?> <p class="error">passwordを入力してください</p> <?php endif;?> </dd> <dt>写真など</dt> <dd> <input type="file" name="image" size="35" value="test"/> </dd> </dl> <div> <input type="submit" value="入力内容を確認する"/> </div> </form> </div> </div> </body> </html>試したこと
・php.iniにてerror_reporting=on
・phpを使用している箇所を一個ずつコメントアウト
補足情報(FW/ツールのバージョンなど)
IT転職のために独学で勉強を始めたばかりです。
どこにエラーが出ているのかすら分かっていません。
教えてください。お願いします。
コードやエラーはマークダウンのcode機能を利用してご提示ください。
https://teratail.com/questions/238564
エラーの場所は「unexpected end of file 」で分かることも多いかと思います。
$_POSTと$_postの混在ダメ! $_POSTに統一すること。 初期化無しに$errorsを使うのもダメ、初期化しよう、$errors = []; してから。
初期化したらエラー文が消えました!
ありがとうございます。
コードやエラーはマークダウンのcode機能を利用してご提示ください。
https://teratail.com/questions/238564
回答1件
あなたの回答
tips
プレビュー