firedrop84 Posted April 1, 2006 Share Posted April 1, 2006 I just want to ask if I use header in one page does it pass the varilabes to the other page that header is pointing to. Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted April 1, 2006 Share Posted April 1, 2006 What do you mean by other variables. If it is variables being passed through the url, ie page.php?var=value1&var2=value2 Then you'll need to place in the header redirect itself like so:[code]header("page.php?var=value1&var2=value2");[/code]If you have POST'd data from a form or any other variables then no you will need to either pass these over the URL or use a session to store these on the server and you'll be able to use them on the page that you are redirecting the usert to. Quote Link to comment Share on other sites More sharing options...
firedrop84 Posted April 1, 2006 Author Share Posted April 1, 2006 thanx I was trying to use sessions but I had some problems with so I passed the variables through the URL. Its working now.firedrop Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted April 1, 2006 Share Posted April 1, 2006 if your are suing session make sure you have session_start on everypage that uses sessions. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.