Ok,
I have a regular form sending vars via POST method to a
second php file when the submit button is pushed.
a.php sends vars via POST to b.php
I have the need to introduce an "extra level of indirection" as
follows ...
I need to intercept the POST vars and "cascade" the POST like this ...
a.php sends vars via POST to newfile.php which then autoloads b.php
How do I have b.php receive the vars as they were originally sent?
In other words is there a way to POST vars in a non ui fashion where
a file simply POST's vars to another file? and if so how?
I really hope I am making this clear. And yes I reallize I could be making
use of Sessions or other means, but for design reasons, that is not
optimal.
Thanks in advance. 🙂