密码确认没有做任何事情

时间:2017-05-03 08:38:47

标签: php

我尝试进行密码确认,但是当你按下除了确认(最后一个)之外填写了所有字段的按钮时,完全忽略了该行代码,它重定向到登录(我从未给过订单)。

if ($user->save()) 
{
    header("Location: index.php");
} 
else 
{
    $error = "Woops";
}
if (empty($userName)) 
{
    $error1 = 'Vul dit veld in!';
}
if (empty($passWord)) 
{
    $error2 = 'Vul dit veld in!';
} else if ($passWord != $confirmPw) 
{
    $error4 = "Wachtwoorden zijn niet matchend!";
}
if (empty($email)) {
    $error3 = 'Vul dit veld in!';
}

0 个答案:

没有答案