我不知道为什么但是我的PHP中出现了一些错误 我已经尝试了所有的东西,我根本无法让它工作,如果有人能帮助我一点点那么好
append
我的代码是
Notice: Undefined index: confirmpassword in
C:\xampp\htdocs\photographer\register\form.php on line 7
Notice: Undefined index: username in
C:\xampp\htdocs\photographer\register\form.php on line 8
Notice: Undefined index: email in
C:\xampp\htdocs\photographer\register\form.php on line 9
Notice: Undefined index: password in
C:\xampp\htdocs\photographer\register\form.php on line 10
答案 0 :(得分:0)
快速而肮脏的方法是在require_once把这个
后立即测试帖子 require_once "../db/connect.php";
if (count($_POST) == 0)
die('Need Data to continue');
答案 1 :(得分:0)
您尝试在$_POST
数组中使用的项目根本没有定义:
isset()
。