我正在PHP 5.3.5的頁面上工作,而且似乎$_POST
不包含從我的表單提交的數據。
這是HTML文件:
<html>
<body>
<form action="welcome.php" method="post">
Name: <input type="text" name="fname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
</body>
</html>
這是PHP文件:
<html>
<body>
Welcome <?php echo $_POST["fname"]; ?>!<br />
You are <?php echo $_POST["age"]; ?> years old.
</body>
</html>
的問題是,表單值不過去了,所以我得到的輸出是這樣的:
Welcome ! You are years old.
取而代之的是:
Welcome John! You are 28 years old.
我在做什麼錯?
您確定您已經發布過嗎?你能看到郵件正文與標題中的信息? – alex 2011-02-28 02:13:28
如果您在welcome.php上查看源代碼,您是否看到php或只是空白? – 2011-02-28 02:16:34
它返回空白頁面 – naji 2011-02-28 02:42:23