0
Difference between \n and <br> in php?
My first hello to the community :) I'm not quite sure when to use \n or <br> for an new line. I first tried to use \n instead of <br> in line 20. It does not work. So, maybe \n is used when assigning a value to a variable and <br> is used for output? Am I right? My code is here: https://code.sololearn.com/w2SCHeG8DYa5/#php Thanks for any explanation.
2 Respostas
+ 7
New lines in html source file have no effect on the output so echoing them to the output with PHP also has no effect. You must use html tags (such as <br>) to modify the default browser processing.
+ 1
Thank you