I am wondering if anyone knows how to automatically insert a carriage return or several returns between sequential entries in a text field. I am using Php and MySQL. The situation runs like this. I have a text field where the user keeps notes. They may make a number of different entries over time on repeated visits to the page. The problem. When I print a report with this information it bunches all the text together making the notes very difficult to read. So two entries in the field look like this on my web page.
Entry #1 The quick brown dog jumped over the red fox.
Entry#2 The red fox took it all calmly.
But when I print the report with this field in it it comes out like this
Entry #1 The quick brown dog jumped over the red fox.Entry#2 The red fox took it all calmly.
Any and all suggestions are really appreciated.