I have a script that involves a user picking from a list of functions what they wish to do. I was thinking of having a script that could read their selection, automatically redirect to the appropriate page, and pass the $HTTP_POST_VARS values to the new page.
For example:
getinfo.php -- gather info, submit to redirect.php
redirect.php -- look at $HTTP_POST_VARS info, and based on it, call correct final page, AND
then pass along all the values in $HTTP_POST_VARS automatically
final1 (or final2, or final3, etc...).php -- display $http_post_vars values
I know I could probably make life easier by just converting it all to query string URL's and just sending the info that way, but I'd prefer to have a method that the user can't really mess with.
I hope this made sense...
Thanx!