这是我的 php,用于将我的用户重定向到他们的个人资料页面。
我在数据库中有一个用户登录表。
他们也是该表中的用户类别字段。
它说一个error22527。
include'connection.php';
$query = "SELECT * FROM tbluser_login WHERE user_Email='$_POST[email]' AND user_Password='md5($_POST[password])'";
$result = mysql_query($query);
$usercategory = "SELECT user_Category FROM tbluser_login WHERE user_Email='$_POST[email]'";
$result2 = mysql_query($usercategory);
$result3 = mysql_fetch_row($result2);
if ($result){
if(mysql_num_rows($result)){
/*session_regenerate_id();*/
$login = mysql_fetch_assoc($result);
$_SESSION['SESS_username']= $login['user_Email'];
$_SESSION['SESS_usercategory'] = $login['user_Category'];
$_SESSION['SESS_pasword'] = $login['user_Password'];
session_write_close();
switch($result3[0]){
case 'Staff':
header("location: staff_profile.php");
break;
case 'Tutor':
header("location: tutor_profile.php");
break;
case 'Student':
header("location: student_profile.php");
break;
case 'Administrator':
header("location: admin_profile.php");
break;
}
}
else {
echo("error".error_reporting(E_ALL));
exit;
}
}