<?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>";
就可以了。
米脂