Hello!
I always use this function to go to another page after
a script is processed:
$url = "a_page.php?value_1=yes&value_2=$login";
header("Location: $url"
exit();
But doing it this way will show variables in the URL bar of the browser:
My question is: How can I still use variables and have an url such like:
Thanks a LOT!
I always use this function to go to another page after
a script is processed:
$url = "a_page.php?value_1=yes&value_2=$login";
header("Location: $url"
exit();
But doing it this way will show variables in the URL bar of the browser:
My question is: How can I still use variables and have an url such like:
Thanks a LOT!