I have a php file that runs a simple jquery script:
var text = $(".hide").text();
I was wondering how I could store this data when I redirect to other pages
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could put it into a cookie. Write it, leave the page, then read your own cookie when you get to the next page.
Or you could POST it to another PHP script, and store it in a session variable. In jQuery, it would look something like this
my_other_script.php would be
Here is the jquery page documentation for it.