I am having trouble with carrage returns in form text areas.
Is there a way to strip out carrage returns from a form text area so that when the data is transferred to a tab delimited file, a new line isn't created each time?
Hi, with nl2br() function you can convert any newline char into a <br>. So you can save it in a csv file or other.
If you want erase it, use str_replace() instead, but so you loose the user formatting...
see you