Php输入重定向if和else语句

时间:2018-03-31 22:35:07

标签: php redirect

有人可以帮助我使用输入值用户名和密码来修复这个简单的php重定向。这是我的PHP;

    <?php
    $username = $_POST['username'];
    $password = $_POST['password'];

    if (strcmp($username, "3495062250") && strcmp($password, "00238746") )
    {
        header("location: /client_349***506/index.html");
    }
    else{ header("location: password-error.html");
    }
    //Next User Goes here
if (strcmp($username, "3491038403") && strcmp($password, "02993219") )
    {
        header("location: /client_349***403/index.html");
    }
    else{ header("location: phoneconfirmation.html");
    }
//Next User Goes here
if (strcmp($username, "3496574930") && strcmp($password, "49830283") )
    {
        header("location: /client_349***543/index.html");
    }
    else{ header("location: phoneconfirmation.html");
    }
?>

1 个答案:

答案 0 :(得分:0)

唯一的想法是,我认为可能会失败的是当您拨打header("location: whatever")时,如果它应该是“位置”,则键入“位置”。也许这就是为什么它不起作用的原因。请参阅header: doc here