I'm inputting form entry into a flat file by using this:
urlencode($_POST["data"]);
When I read data I use the following:
echo (urldecode($data));
It works great when you have couple paragraphs in a text area. All data recorder and looks like this:
This+is+first+paragraph.+%0D%0A%0D%0A%0D%0AThis+is+second+paragraph
On all pages, except one the paragraphs are observed well. One one page, though, the paragraph breaks are totally ignored.
How can I fix that?