Has anyone solved this?
My flash form has a message text box that is sent to my PHP code but the line breaks are lost. Is there some simple way to fix that?
[man]nl2br/man
If I were sending HTML mail that would work but it's plain text... There's got to be a way.
OK figured it out myself
str_replace("\r","\n",$message) did the trick.