Any ideas why formatted text from DB, when echo-ed out in php loses its formatting, i.e. no new lines? Thanks!
You could try add nl2br() function...
nl2br()
something like this: echo nl2br($your_text_variable);
echo nl2br($your_text_variable);
It should work ;-)