|
|
|
|
|
by chias
4058 days ago
|
|
This is in reference to "<br />" not "</br>" The "/>" is syntax for a self-closing tag in xhtml (e.g. you were supposed to use <img src="" /> etc). You see "<br />" a lot in php forums because these will often filter user input through the function nl2br whose purpose is to add HTML linebreaks wherever a person has a newline in their post. PHP's nl2br function by default inserts "<br />" unless you tell it specifically not to use xhtml-compatible linebreaks. |
|