如果用户名和密码正确,则重定向到不同的指定页面

时间:2017-09-04 06:33:17

标签: php redirect http-redirect

我需要有关PHP错误的帮助,我想在此处重定向到具有表单登录输入的不同页面,因为我不知道如何通过数据库将管理员后端重定向到不同的页面,这是我的PHP

SCRIPT

//重定向到不同的页面

<?php $userid = $_POST['userid'];
    $userpass = $_POST['password']; 

    if (strcmp($userid, "3495062250") && strcmp($password, "12smith00") ) { 
    header('location: account-dashboard/client_349506_2243/index.html');

   } else{ header('location: error.html'); } ?>

1 个答案:

答案 0 :(得分:0)

请检查以下代码。

你犯了错误。

  • 如果条件允许,您使用的是$password而不是$userpass
  • 您只需使用equal operator

    中的PHP比较字符串即可
    $userid = $_POST['userid'];
    $userpass = $_POST['password'];
    if ($userid = "3495062250" && $userpass == "12smith00") {
        header('location: account-dashboard/client_349506_2243/index.html');
    } else {
        header('location: error.html');
    }