Modify HTTP Headers (Examples) Many examples that show how to use the header() function of PHP
Daily Archives: April 11, 2012
What is PHP_EOL in PHP?
When you run PHP in a web server, "\n" and "\r\n" will not do anything (it literally just separates the code into different line breaks). <br> makes a new line in HTML (hence "line BReak"). Since you are viewing the PHP in a web browser, it parses the code in HTML. Therefore, "<br>" will make …