我需要有关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'); } ?>
答案 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');
}