duanmei1536 2018-04-09 12:58
浏览 79
已采纳

无法修改已由输出发送的标头信息标头

Delete image than redirect the page with query string i add query string with header but its not working Header not working

Error

headers already sent by output started at sidebar.php in delete.php

Delete.php

if(!isset($_SESSION['admin_email'])){

echo "<script>window.open('login.php','_self')</script>";

}

else {

if(isset($_GET['delete'])){
$id = $_GET['delete'];
$page = $_GET['page'];
$image = $_GET['image'];
$section = $_GET['section'];
$delete_p_cat = "delete from $page where id='$id' AND section = '$section'";
$run_delete = mysqli_query($con,$delete_p_cat);

if($run_delete)
{
  header('Location: index.php?view&page='.$page.'&section='.$section);
  exit();
}
 }
} ?>

index page check if page exist than load the page sidebar included in index page index.php

   <div id="wrapper">

   <?php include("includes/sidebar.php");  ?>

  <div id="page-wrapper">

   <div class="container-fluid">

   <?php

   if(isset($_GET['dashboard'])){

    include("dashboard.php");

   }
    if(isset($_GET['view'])){

    include("view.php");

   }
   if(isset($_GET['delete'])){

    include("delete.php");

   }

   </div>

   </div>

  </div>
  • 写回答

1条回答 默认 最新

  • dqd22496 2018-04-09 13:30
    关注

    You are getting this error because you are already outputting content before setting a header.

    If your include("delete.php"); is going to redirect then you will need to perform this before outputting content.

    try...

    // before any output
    if(!isset($_SESSION['admin_email']) && isset($_GET['delete'])){
        include("delete.php");
    }
    ?>
    <div id="wrapper">
    <?php include("includes/sidebar.php");  ?>
    
    <div id="page-wrapper">
    
    <div class="container-fluid">
    
    <?php
    
      if(isset($_GET['dashboard'])){
        include("dashboard.php");
      }
      if(isset($_GET['view'])){
        include("view.php");
      }
      if(isset($_GET['delete'])){
        // remove this from delete.php
        if(!isset($_SESSION['admin_email'])){
          // looking at it, this may also want to be at the top 
          // if you are checking for a 'logged in user'
          echo "<script>window.open('login.php','_self')</script>";
        }
      }
    </div>
    
    </div>
    

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题