when you will get the message/error "headers already sent"?

Answers were Sorted based on User's Feedback



when you will get the message/error "headers already sent"?..

Answer / luan nguyen

you get header already sent when you call header() after you
have posted other data to the browsers.
Example:

<?php

echo "Hello World";
header("Location: http://new.url.com");

?>

Is This Answer Correct ?    5 Yes 0 No

when you will get the message/error "headers already sent"?..

Answer / suren

if u print any message on the browser using echo statement
or any html tags before using the "session_start()" like
statements in the scripts.
if u want to overcome that problem
simply write "ob_start();" at the very starting of script
and "ob_end_flush();" at the end.

Is This Answer Correct ?    3 Yes 0 No

when you will get the message/error "headers already sent"?..

Answer / vishwanath

php have header_sent() function to check the headers are
sent or not

Is This Answer Correct ?    2 Yes 1 No

when you will get the message/error "headers already sent"?..

Answer / shiva

This is due to whitespaces before php tags you are leaving
at the starting of the line.

Is This Answer Correct ?    2 Yes 1 No

when you will get the message/error "headers already sent"?..

Answer / dhiraj

when we are using the session variable..and want to start
our session.. we use session_start(); in the very first
line.
anything occur before this line, even a single space we get
the headers already sent error.
To overcome this problem, we can use ob_start(); at the
very first line and ob_end_flush(); at the end of the
script..

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More PHP Interview Questions

Do you know what is use of count() function in php?

0 Answers  


How i can integrate merchant payment get way in zen cart? in php? plz help me

1 Answers   BA Continnum Solutions,


What is the advantage of runtime polymorphism?

0 Answers  


What are the method available in form submitting?

0 Answers  


How can we connect to a mysql database from a php script?

0 Answers  






How escape single quotes php?

0 Answers  


What is the current stable version of php? What advance thing in php7?

0 Answers  


Which MySQL function would you use to select a database?

0 Answers  


What are the __construct() and __destruct() methods in a php class?

0 Answers  


How to get the value of current session id?

0 Answers  


Which function is used to strip whitespace?

0 Answers  


Explain about objects in PHP?

0 Answers  


Categories