我有以下PHP代码,根据成绩
重定向if ($grade == 'Admin')
{
header("location:Admin\FINAL_adminhome.html");
}
else if ($grade == 'Employee')
{
header("location:Admin\FINAL_adminhome.html");
}
else if ($grade == 'Security Guard')
{
header("location:Security guard\securityhome.html");
}
else if ($grade == 'Receptionist')
{
header("location: Reception\recphome.html"); // Line 53
}
对于"管理员","员工"和#34; Security Guard",它重定向正确。但是,我收到了以下错误#34; Receptionist":
警告:标题可能不包含多个标题
答案 0 :(得分:2)
\ r \ n表示回车(ASCII码13)。尝试像这样逃避斜线
header("location: Reception\\recphome.html");