警告:标题可能不包含多个标题,在第53行的XXXXXXXX中检测到新行

时间:2016-04-22 13:58:02

标签: php

我有以下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":

  

警告:标题可能不包含多个标题

1 个答案:

答案 0 :(得分:2)

\ r \ n表示回车(ASCII码13)。尝试像这样逃避斜线

header("location: Reception\\recphome.html");