Hi all,
I am pretty much a newbie at php, but have looked for the answer to this question in several places and was not able to find it. So I thought I'd give this forum a go.
This the situation:
I have a form which contains a textarea in an html page. Let's say this is the text in the text area:
This is line 1
This is line 3
If I post this form the URL looks smt like:
register_user.php?Personal_Note=This+is+line1%0D%0A%0D%0AThis+is+line+3&User=0100123 ....
In the register_user.php file the $Personal_Note variable is now translate back to the 'original format' (with just spaces and new lines).
How can I 'pass on' the contents in this variable using a URL ? In other words how do I translate the string to an HTML compliant (?!?) string format.
Thanks,
Oscar