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. Link to comment https://forums.phpfreaks.com/topic/6327-solved-header/ 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. Link to comment https://forums.phpfreaks.com/topic/6327-solved-header/#findComment-22868 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 Link to comment https://forums.phpfreaks.com/topic/6327-solved-header/#findComment-22894 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. Link to comment https://forums.phpfreaks.com/topic/6327-solved-header/#findComment-22905 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.