一些错误,我无法弄清楚为什么?

时间:2017-11-20 23:45:47

标签: php mysql

我不知道为什么但是我的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

2 个答案:

答案 0 :(得分:0)

快速而肮脏的方法是在require_once把这个

后立即测试帖子
 require_once "../db/connect.php";
 if (count($_POST) == 0)
      die('Need Data to continue');

答案 1 :(得分:0)

您尝试在$_POST数组中使用的项目根本没有定义:

  • 确保数据实际上是从您的前端发送的,
  • 在执行后端中的任何其他任务之前验证输入数据,例如使用isset()