我無法在我的瀏覽器中打印$_POST
的值。 這個form_methods.php
:有人可以告訴我這段代碼有什麼問題嗎?
<html>
<head>
<title>Form Methods</title>
</head>
<body>
<form method="post" action="formoutputpage.php">
<p><input type="text" name="greeting" size="15"></p>
<p><input type="text" name="name" size="15"></p>
<p><input type="submit" name="submit" value="Salutation"></p>
</form>
</body>
</html>
,這是formoutputpage.php
:
<?
echo $_POST['greeting'];
echo " ".$_POST['name'];
echo "!";
?>
是否迴應任何事情,你已經啓用了短標籤? – jeroen 2012-04-25 01:19:30