Ben Paton
Ben Paton

Reputation: 1442

PHP post variables

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

Answers (2)

adamdehaven
adamdehaven

Reputation: 5920

Where is the data you're wanting to pickup on the next page coming from? A form? Or what?

Upvotes: 0

summea
summea

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

Related Questions