I noticed that there are two empty lines above the HTML in the source code of my website. It looks like this:
<!-- Two empty lines here, StackOverflow won't let me post empty lines -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
The HTML is generated using PHP. How can I find out where the output started?
I tried adding <?php header('...'); ?>
after <html>
, hoping to trigger an error like "Cannot modify header. Output started at line ..." But no error occurred.