Use the following code directly, overwriting the login.php in Dede
Copy CodeThe code is as follows:
Require_once (DirName (__file__). " /.. /include/config_base.php ");
Require_once (DirName (__file__). " /.. /include/inc_userlogin.php ");
if (empty ($dopost)) $dopost = "";
//--------------------------------
Login detection
//--------------------------------
if ($dopost = = "Login")
{
if (empty ($validate)) $validate = = "";
else $validate = Strtolower ($validate);
if (Empty ($_session["s_validate"])) $svali = "";
else $svali = $_session["S_validate"];
$cuserLogin = new Userlogin ();
if (!empty ($userid) &&!empty ($PWD))
{
$res = $cuserLogin->checkuser ($userid, $pwd);
Successful Login
if ($res ==1) {
$cuserLogin->keepuser ();
if (!empty ($gotopage)) {
Header ("Location: $gotopage");
ShowMsg ("Successful login, is turning to admin admin homepage!") ", $gotopage);
Exit ();
}
else{
ShowMsg ("Successful login, is turning to admin admin homepage!") "," index.php ");
Header ("location:index.php");
Exit ();
}
}
else if ($res ==-1) {
ShowMsg ("Your user name does not exist!", "");
}
else{
ShowMsg ("Your password is wrong!", "");
}
}//<-Password is not empty
else{
ShowMsg ("User and password not filled in complete!", "");
}
<-Verifying users
}
?>
<title>Management system</title>
http://www.bkjia.com/PHPjc/318265.html www.bkjia.com true http://www.bkjia.com/PHPjc/318265.html techarticle directly using the following code, overwrite the login.php in Dede to copy the code as follows:? require_once (DirName (__file__). " /.. /include/config_base.php "); Require_once (DirName (__file__). " ...