前提・実現したいこと
syntax error, unexpected end of fileを解決したい。
発生している問題・エラーメッセージ
Parse error: syntax error, unexpected end of file in /Applications/XAMPP/xamppfiles/htdocs/test/mypage.php on line 44
該当のソースコード
PHP
1<?php 2 $email = $_POST["email"]; 3 $password = $_POST["password"]; 4 5 $user_list[0] = array("email" => "test@gmail.com","name" => "a","password" => "aaa"); 6 $user_list[1] = array("email" => "test2@gmail.con","name" => "test","password" =>"test2"); 7 8 $flag = false; 9 10 for ($i = 0; $i < count($user_list); $i++) { 11 if ($email == $user_list[$i]["email"] && $password == $user_list[$i]["password"]) { 12 $flag = true; 13 } 14?> 15 16<!DOCTYPE html> 17<html lang="ja"> 18<head> 19 <meta charset="UTF-8"> 20 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 21 <title>Document</title> 22</head> 23<body> 24 <?php 25 if ($flag) { 26 echo '<p>ログインできました</p> 27 <form action="serch.php" method="post"> 28 <label for="gender">性別</label> 29 <input type="radio" name="gender" value="0">男 30 <input type="radio" name="gender" value="1">女 31 <label for="blood">血液型</label> 32 <select name="blood"> 33 <option value="A">A型</option> 34 <option value="B">B型</option> 35 <option value="O">O型</option> 36 <option value="AB">AB型</option> 37 </select> 38 <input type="checkbox" name="over_sixty" value="1" checked="checked">60歳以上も含む 39 <input type="submit" value="検索"> 40 </form>'; 41 } 42 ?> 43</body> 44</html>
試したこと
カッコの抜けやスペルミスを確認しましたが、自分の目では見つかりませんでした。
補足情報(FW/ツールのバージョンなど)
VScode 上で記述
開発環境 → XAMPP
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。