Hi all!
When I redirect a user to a specific page I want pass additional parameters as well. Something like this:
header("Location: hello.php?a=b")
How can I perform this task?
Thanks in advance.
Giuseppe.
uhmmmm... well dude, it looks like you solved your own problem there 🙂. to seperate params use & thats about it. or specifiy a bit more on your question -=levi=-
$ReturnURL = 'index.php?a=2'; echo "<META http-equiv='Refresh' content='0; url=$ReturnURL'>"; exit();
Thats another option that works fine and puts the url in the user agents location bar