Php

How to Solve “Headers already sent” error in PHP

This Warning is shown by PHP when you use the header function to output headers or use the setcookie function to set cookies after any echo or content which is not inside the PHP tag.

We need to make sure functions that send or modify HTTP headers must be invoked before any output is made.

Why Error Occured

PHP scripts generate HTML content and send HTTP/CGI headers to the webserver. The headers always come first on the page/output. The headers must be passed to the webserver before PHP can do anything else.

The PHP will flush all gathered headers once it receives the first output (print, echo, html>). Following that, it is free to transmit whatever output it desires. It is, however, unable to send any more HTTP headers at that point.

You’ll get errors like the below:

Related Post
Warning: Cannot modify header information - headers already sent by (output started at /some/file.php:2) in /some/file.php on line 12

Line no 12 contain header() and setcookie() calls.

PHP Methods that modify the HTTP header

There are some functions modifying the HTTP header:

How To Generate Error

You can generate error(header already sent) as like below PHP code:

<?php
echo "Hello World";
header("Location: /redirect.php");
?>

How To Solve: Cannot modify header information

You can utilize output buffering functions to automatically buffer your output before sending it, and the output will be sent in chunks at the end.

The functions that send/modify HTTP headers must be invoked before any output is made. Otherwise, the call fails:

<?php
ob_start(); ?>  
Hello World !!!   
<?php
setcookie("name","value",100);   
?>  
Again !!!  
<?php  
ob_end_flush();  
?>

Some Other Reasons to generate Errors

  • Whitespace before <?php or after ?>
  • The UTF-8 Byte Order Mark specifically
  • Previous error messages or notices
  • print, echo and other functions producing output
  • Raw <HTML> sections prior <?php code.

Recent Posts

What is the Purpose of php_eol in PHP?

in this quick PHP tutorial, We'll discuss php_eol with examples. PHP_EOL is a predefined constant in PHP and represents an… Read More

2 months ago

Laravel Table Relationship Methods With Example

This Laravel tutorial helps to understand table Relationships using Elequonte ORM. We'll explore laravel table Relationships usage and best practices… Read More

2 months ago

Exploring the Power of Laravel Eloquent Join?

We'll explore different join methods of Laravel eloquent with examples. The join helps to fetch the data from multiple database… Read More

2 months ago

Quick and Easy Installation of Laravel Valet

in this Laravel tutorial, We'll explore valet, which is a development environment for macOS minimalists. It's a lightweight Laravel development… Read More

3 months ago

What is Laravel Soft Delete and How Does it Work?

I'll go through how to use soft delete in Laravel 10 in this post. The soft deletes are a method… Read More

3 months ago

Common Practices for Laravel Blade Template

in this Laravel tutorial, I will explore common practices for using the Laravel Blade template with examples. Blade is a… Read More

3 months ago

Categories