When clicking submit on a form the information is saved in a variable named $_POST["name"]. How can I keep that variable in memory until the person actually leaves my site?
For Example:
Code:
<input type="text" name="name"><br>
<input type="submit" value="save for current session">
Then 3 pages later but still same domain (or while browser still open, eiter way) that submitted info can be called for again.
Thank you,
Moki