When using the function
header("Location: file.php");
Is it possible to post variables to that page without using the query string?
Nope.
You can save it in a session variable, and then access it when you get to that page.
Thanks. I am working on doing it that way at the moment.
You may need to pass the session id with the url, though.
Sorry. I just realised my post wasn't too helpfull. Sessions are obviously a great way to pass data from page to page.
no problem. script seems to be working quite well..