1.wamp搭建的环境,用post获取表单提交数据返回值为空
代码如下:
alert('Your username is empty!');";
}else{
var_dump($firstname);
}
?>
报错:Notice: Undefined index: firstname in E:WebWeb SoftwarewampwwwDEMOtest.php
2.php服务器是阿帕奇没有错,端口号也是80没有错
3.试了get方法,依然得不到数据



我发现我自己的问题了:html文件没有从和php文件的同一路径打开~
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
报错:Notice: Undefined index: firstname in E:WebWeb SoftwarewampwwwDEMOtest.php
此错误是一个Notice级的错误,可以忽略,它是想告诉你$firstname还没有被申明就已经在使用了。但是如果不希望它出现,有很多办法。比如修改php.ini中的php_error。