|
我编写如下程序,但访问时出现下列问题
The requested method POST is not allowed for the URL /ch01.06form.html.
请高手解答。
<html>
<head>
<title> 输入资料表单界面</title>
</head>
<body>
<form method=post acction=http://127.0.0.1/ch01.06.php>
<table border=0>
<tr><td>帐号:</td>
<td><input type=text size=16 name=account></td>
</tr>
<tr><td>密码:</td>
<td><input type=text size=16 name=password></td>
</tr>
<tr><td>电子邮箱:</td>
<td><input type=text size=28 name=email></td>
<button type=submit>确定</button>
<button type=reset >取消</button>
</table>
</form>
</boby>
</html>
<html>
<head>
<title> 显示接收资料页面</title>
</head>
<body>
<?php
$帐号=$account;
$密码=$password;
$电子邮箱=$email;
echo "你所输入的资料如下:";
echo "<p>帐号:".$帐号;
echo "<p>密码: ".$密码;
echo "<p>E-mail:".$电子邮箱;
echo "<p>显示的是否正确?";
?>
</boby>
</html>
我按照你说的方法改过了还不行,我想是不是我的apache php配置文件需要改动
我单独看php文件没有问题,但用网页的post 方式,传递参数,就显示一上错误。 |
|