この php ファイルは正しいように見えますが、「unexpected end of file」エラーを返しています。html ファイルのどこかにエラーがあります。印刷内のタグを "" に入れようとしましたが、php 行の余分な空白を 1 つ削除し、変数行の角かっこ [] と引用符の間に空白を追加しましたが、Enter キーを押しても同じエラーが発生します。データをphpスクリプトに送信します。HTMLコードは次のとおりです。 http://pastebin.com/Rb62pZcy
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Your Feedback</title>
</head>
<body>
<?php // Script 3.3 handle_form.php
// This page receives the data from feedback.html
// It will receive: title, name, email, comments in $_POST
$title = $_POST [ 'title' ] ;
$name = $_POST [ 'name' ] ;
$email = $_POST [ 'email' ] ;
$comments = $_POST [ 'comments' ] ;
print "<p>Thank you, $title $name, for your comments.</p>"
"<p>You stated that you found this example to be '$response' and added:<br />$comments</p>"
?>
</body>