Hi, I need what is probably a simple piece of information....
I'm setting up a payment gateway for a client and their prebuilt scripts are Perl, which I don't usually use.
However, I'm not familiar with cognate functions in PHP.... I can supply code samples from the Perl script if needed, but I think this is probably pretty straightforward....
I need to know how to send form data to the 3rd party server and read it's response code as a variable which can then be interpreted by my local PHP script.
Pseudocode would look something like this:
$form = $HTTP_POST_VARS;
$response = submitForm($form);
So that $response contains the code regurgitated by the 3rd party servers cgi script. I'm assuming this is straightforward, but I'm having a hard time Googling the proper functions....