1.wamp搭建的环境,用post获取表单提交数据返回值为空
代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<form action="test.php" method="post">
Firstname: <input type="text" name="firstname" value="aaa" />
Lastname: <input type="text" name="lastname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
</body>
</html>
<?PHP
$firstname = $_POST["firstname"];
$lastname = $_POST["lastname"];
$age = $_POST["age"];
if($firstname==""){
echo "<script>alert('Your username is empty!');</script>";
}else{
var_dump($firstname);
}
?>
报错:Notice: Undefined index: firstname in E:WebWeb SoftwarewampwwwDEMOtest.php
2.php服务器是阿帕奇没有错,端口号也是80没有错
3.试了get方法,依然得不到数据
我发现我自己的问题了:html文件没有从和php文件的同一路径打开~
确定几点问题!
1.本次测试的
test1.html
同test.php
两个文件均在同一级目录下DEMO
。2.请不要使用
file://
路径访问你的PHP文件
,这样PHP文件不会被安装在你电脑上的php.exe解释器解释。3.请使用
http://
协议访问您的test1.html
,并正确填入值提交表单到test.php
。4.请注意你的PHP文件开头
<?php
还是<?PHP
。确定好以上几点,看看问题是否还存在呢?
测试你的代码并没有问题
好像没问题啊?
报错:Notice: Undefined index: firstname in E:WebWeb SoftwarewampwwwDEMOtest.php
此错误是一个Notice级的错误,可以忽略,它是想告诉你$firstname还没有被申明就已经在使用了。但是如果不希望它出现,有很多办法。比如修改php.ini中的php_error。