我是新來的PHP ... 只是想我about.php文件中這一段簡單的代碼(通過超鏈接鏈接到index.php文件):PHP未定義指數:
<form action ="about.php" method="POST">
<ul>
<li>
<label for="name"> Enter your name please:</label>
<input type="text" name="name"/>
</li>
<li>
<label for="comments" rows="20"> Enter your comments :</label>
<textarea id="comments" name="comments" rows="5" cols="38">
<?php
$name = $_POST["name"];
if (!empty($name)) {
echo "Your name is ".$name."and you like ny site!";
} else {
echo "Please enter your name";
}
?>
</textarea>
</li>
<li>
<input type="submit" />
</li>
</ul>
我得到以下錯誤:
注意:未定義指數:名d:\ XAMPP \ htdocs中\ stathis1 \關於\ about.php線
請輸入您的姓名
我不明白的錯誤,但仍計劃沒有做什麼是應該,這是把插入的名稱textarea的... 我相信光標永遠不會進入if(!isset($ name))條件... – SoulMagnet 2013-03-12 22:28:05
不要忘記關閉窗體'' – 2013-03-12 22:29:50
確定表單標記已關閉... – SoulMagnet 2013-03-12 22:35:22