how to get data when using header('location:'. $url) ? help me
Linux, Apache, MySQL, PHP
3
Posts
3
Posters
0
Views
1
Watching
-
hi all. I want get data form url when use header('location:'.$url) then it rederect to another url. how to get data when using header('location:'.$url) ??? thanks
nothing
In one page you use: header('Location: ' . $url); Suppose $url = 'www.example.com/abcd.php?action=register'; And in the "abcd.php" page just do a $_GET['action'] to get the action! And then you do something, in this case you show a div to register! Hope I can help, KZ
-
hi all. I want get data form url when use header('location:'.$url) then it rederect to another url. how to get data when using header('location:'.$url) ??? thanks
nothing