I'm trying to figure out how to pass data from one program to another. Here's the situation:
The user enters data in a form, which is passed to a PHP program with the POST method. This program analyzes the data, then it should pass it to a second program automatically. This also has to be with POST, so that no data appears in the Address bar.
How do I get the first program to pass the data to the second without any user interaction, and without displaying it anywhere?
Thanks. -Ken