[SOLVED]recover text area from form

Is there any way to recover the current content of a text area from a form without using javascript, just with php? I need to recover a text area content to save it in $_SESSION before linking to another php file. That way, I might keep the value of the text area and have it available at the second php file. If I am forced to use javascript, I will use it, but I prefer to uses php as long as it is possible for my purpose.
Thanks in advance

If it’s in the form… Then submit it and save the content (from the submitted form) to a session variable.

Thanks for that effective reply. I already solved by using a session variable like you said.

Sponsor our Newsletter | Privacy Policy | Terms of Service