douyun8901 2010-12-09 08:49
浏览 15
已采纳

PHP标头错误为什么这不起作用?

<?php
require 'header.php';
require 'connection.php';

mysql_query("DELETE FROM quotes WHERE ID = $_GET[id]") or die("didnt delete properly");
header('Location: index.php');
?>

When I run this it says: Warning: Cannot modify header information - headers already sent by (output started at xxxxx on line 6

What is wrong?

  • 写回答

4条回答 默认 最新

  • dongwen3410 2010-12-09 08:53
    关注

    Either header.php or connection.php are outputting some content. You cannot modify the HTTP headers after content is sent, because the headers have already been sent at that point.

    A hack of a solution would be this:

    <?php
    
    ob_start();
    
    require 'header.php';
    require 'connection.php';
    
    mysql_query("DELETE FROM quotes WHERE ID = $_GET[id]") or die("didnt delete properly");
    
    header('Location: index.php');
    
    ob_end_flush();
    
    ?>
    

    However, you should instead figure out where content is being sent and suppress it, or reorder it to come after the header() call.

    If, as I suspect, header.php outputs an HTML header, you can just eliminate the require 'header.php'; line -- the content will never be shown anyway, since this is a redirect.

    Also, note that the HTTP standard requires that the value of a Location header be an absolute URL. Therefore, header('Location: index.php'); will generate an HTTP response that is invalid according to the HTTP standard.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部