* Thus wrote Todd Cary ([EMAIL PROTECTED]):
> I need to go to another page and I use the
>
> header("location: " . $the_url_to_the_page);
>
> Is it possible to use this method with POST so that the info does not
> show in the URL?
No.
You can use session's to pass data without the user knowing about
it. And is probably a better method than using GET/POST.
$_SESSION['var_to_pass'] = 'its value';
header("location: " . $the_url_to_the_page);
Then $the_url_to_the_page can read the session data.
Curt
--
"I used to think I was indecisive, but now I'm not so sure."
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php