我想用header这个语句。怎么处理?

<?php
session_start();
require(conn.php');
if($_SESSION['admin']=="OK")
{
?>
数据
<?php
include('foot.php');
}else{
header("location:login.php");
}
mysql_close();
?>

Warning: Cannot modify header information - headers already sent by

初步认为是header("location:login.php");出错。
把它改成 echo"<script language='javaScript'>window.location.href='index.php';</script>";
就可以了。

动漫人物
浏览 92回答 1
1回答

米脂

在header函数之前不能有任何echo输出。如果没有echo,那么找找在<?php ?>代码外部有没有什么html,空格,空行什么的。如果还是没有,那只能说明这是BOM头的原因了,那么使用 Notepad++ 来编辑,在 encoding 菜单中选择 CONVERT to UTF-8 without BOM.
打开App,查看更多内容
随时随地看视频慕课网APP