Hi,
I've been searching for a solution for this problem. Browsed so many forums and sites but nothing solved the exact issue I am having.
So I've decided to write my case here.
I am using a textarea in my form, a simple form that will send an email using php.
Following is the code
Code:
<textarea name="body" rows="9">
<? if (isset($posts['body'])){echo $posts['body'];}?>
</textarea>
But when the form is submitted textarea input loses the line breaks and instead shows ugly /r/n
Any guidance?