Hi,
I have a text data type field in MySQL table that I need to read out to a page. When the value is entered into this text field the value will have returns as follows:
------------------
TEST TEST aaaaaaaa
asdasdasdfas
3rd lineasadas
----------------
When I read this value out and display in php page in the browser, the returns are not there and I get it all in one line:
-----------------------
TEST TEST aaaaaaaaasdasdasdfas3rd lineasadas
-------------------
What can I do to have he returns show up?
Thanks,
Juls