Possible Duplicate:
header() error not shown in php
My /etc/php5/apache2/php.ini file has the next configuration:
display_errors = On
log_errors = On
error_reporting = E_ALL | E_STRICT
and I can view errors like Undenifed variable, Parse error and so on in the browser, but with the next code
<!DOCTYPE html>
<?php
header('hola: adios');
?>
I can't see the Headers already sent error. Also with the Developer tools of Chrome I can see that the header hola: adios is set.
How could I see those type of errors?
Thanks.