Inside my header the html tags are not separated by new lines.
For example:
<? if(){
echo 'meta title';
}
if(something){
echo 'meta desc';
} ?>
The Mozilla browser does not break lines between meta’s
Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to put newline characters at the end of each line to explicitly end the line. The newline character is
\n. Notice I changed your single quotes to double quotes as single quotes would cause the\not to escape thenand literally print\nto the page instead of a newline character.See the PHP manual for more on special characters