I have a html textarea and type a text with 3 rows:
a
b
c
I then send this text by GET method. When I echo the text, the line break missed. It shows "abc"
Anyway, I assign session for this so that when I back to previous page, the content is still there:
$SESSION['temp_body'] = $GET['body'];
when i back to previous page, what I typed before became "abc" as well.
how can i solve this situation? thanks.