php - Redirect with $_POST variable -


How can I redirect to a page and add some information to the $ _POST variable?

I know that with the variable $ _GET, you get the URL as & amp; Var = foo

  session_start (); $ _SESSION = $ _POST;   

Then your post parameters will be available through $ _SESSION.

Comments