Reputation: 1442
Can you save a variable to post in php to pickup on another page? I only know how to retrieve a post variable, or is this where you should use session instead. I don't want to save my variable on the end of the url and use get.
Upvotes: 1
Views: 671
Reputation: 5920
Where is the data you're wanting to pickup on the next page coming from? A form? Or what?
Upvotes: 0
Reputation: 7583
This is where you might want to use $_SESSION
variables, instead of $_POST
.
See: http://php.net/manual/en/reserved.variables.session.php
Upvotes: 3