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>
    

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

报告相同问题?

悬赏问题

  • ¥30 关于<main>标签页面跳转的问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系
  • ¥30 VMware 云桌面水印如何添加
  • ¥15 用ns3仿真出5G核心网网元
  • ¥15 matlab答疑 关于海上风电的爬坡事件检测
  • ¥88 python部署量化回测异常问题
  • ¥30 酬劳2w元求合作写文章
  • ¥15 在现有系统基础上增加功能
  • ¥15 远程桌面文档内容复制粘贴,格式会变化