提示コードのコメント部内部のコードですがこの行に対して以下のエラーが出ます。これはなぜでしょうか?html
ではエラーにならないのですがphp
で実装するとエラーになります。
Parse error: syntax error, unexpected 'Login' (T_STRING), expecting ',' or ';' in /var/www/html/Top.php on line 33
下記のhtml
コードは正常に作用しました。
html
1<input type="button" onclick="location.href='Login.php'" value="ログイン" style="background-color:bluesize:15;width:150px;height:30px">
php
1<!DOCTYPE html> 2<html> 3 <head> 4 <title>test</title> 5 <link rel="stylesheet" href="Style.css"> 6 <meta charset="UTF-8"> 7 </head> 8 9 <body> 10 11 12 <?php 13 ini_set( 'display_errors', 1 ); 14 ini_set( 'error_reporting', E_ALL ); 15 ?> 16 17<center> 18 <h1> 掲示板 </h1> 19 20 size:15;width:150px;height:30px"> 21 22 23 <?php 24 //phpinfo(); 25 26 if(isset($_SESSION['account']) == false) 27 { 28 29 } 30//////////////////////////////////////////////////////////////////////////////////////////////////////////// 31 echo '<input type="button" onclick="location.href='Login.php'" value="ログイン" style="background-color:bluesize:15;width:150px;height:30px">'; 32 33 echo '<input type="button" onclick="location.href='NewAccount.php'" value="新規" style="background-color:red;'; 34//////////////////////////////////////////////////////////////////////////////////////////////////////////// 35 $file = "board.txt"; 36 37 $board; 38 //ファイルがない時 39 if(file_exists($file) == true) 40 { 41 $board = json_decode(file_get_contents($file)); 42 } 43 else 44 { 45 $board = json_decode($file); 46 } 47 48 foreach($board as $message) 49 { 50 51 echo '<p>' ,$message[0], '</p> </br>'; 52 echo '<p> ' ,$message[1], '</p><hr>'; 53 } 54 55 ?> 56 57 <form action="InputText.php" method="post"> 58 <p> 名前 </p> 59 <input type="text" name="name"> 60 <p> 文章 </p> 61 62 <textarea name="comment" cols="30" row="5"></textarea></br> 63 <input type="submit" value="投稿"> 64 </form> 65 66 67</center> 68 69 70 71 72 </body> 73</html>