Parse error: syntax error, unexpected '"\n"' (T_CONSTANT_ENCAPSED_STRING), expecting ',' or ';' in /public_html/mission_2-3.php on line 27
入力データのファイル書き込みで、ファイルへ追加で書き込まれるようにしたいのですが、上記のエラー分が出て全くわからないので助けて欲しいです。
発生している問題・エラーメッセージ
Parse error: syntax error, unexpected '"\n"' (T_CONSTANT_ENCAPSED_STRING), expecting ',' or ';' in /public_html/mission_2-3.php on line 27
該当のソースコード
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>フォーム</title> </head> <body> <form action="mission_2-1.php" method="post"> <h1>フォームデータの送信</h1> <div> <input type="text" name="comment" value="コメント" /> </dv> <dv> <button type="submit">送信</button> </div> <td> <?php define( 'FILENAME', './mission_2-3.txt');// 変数の初期化
$file_handle = null;
if( !empty($_POST['btn_submit']) ) {
if( $file_handle = fopen( FILENAME, "a") ) { // 書き込むデータを作成 echo $_POST['message']"\n"; fwrite( $file_handle); fclose( $file_handle); }
}
if( $file_handle = fopen( FILENAME,'r') ) {
fclose( $file_handle);
while( $data = fgets($file_handle) );
}
?>