Hi, I have a site that allows users to enter information into mysql. I have the column set to TEXT. I noticed that it doesnt seem to capture enter keys in text so that the whole post will show up in one paragraph. Is there a resolution?
thanks.
You have to replace enters ("\r") with line break for HTML which is <BR> I think. Try str_replace() function.
Thank you very much.
it replaces new line characters to <br> tag...