I have a dinamic generated website, on wich I submit content via form > MySQL and render it via PHP. I make the paragraphs ends in texts by manually typing "<br>". Is there a way that these texts start new paragraphs without this HTML coding?
Thanks in advance,
helil
When you enter the information that is going to go into the db i take it that you use a textarea?
If so then when you pull that data out use the
nl2br function
So if you have a paragraph and then 3 new lines it'll return the same.
HTH
GM