I have a little question here ...
I enter the following paragraph into the database (mysql datatype = text):
this is a line
this is an other line
this is the third line
if i select the paragraph out from the database and display it with
echo, it will display the whole thing in one line, so the outcome will look like
"this is a line this is an other line this is the third line"
the question is how can i add <br> to the end of each line so that it will break into separate lines~