我多次使用 header('location:index.php')..但每次它都会给我错误,例如“无法修改标头信息 - 标头已发送”..请任何人帮助我....
<?PHP
$exist=mysql_query("select * from lease where pro_id='".$pro_id."'")
or die(mysql_error());
if(mysql_num_rows($exist)>0){header('location:leaseexist.php');} ?>
更新
错误是
Warning: Cannot modify header information - headers already sent by (output started at
/home/content/39/9845539/html/slwebsite/leaseprofile.php:15) 在 /home/content/39/9845539/html/slwebsite/leaseprofile.php 第 19 行
第 19 行是
if(mysql_num_rows($exist)>0){header('location:leaseexist.php');}