Okay...
Bobby fills out a form at my site to buy a product. Part of the info is for a CC transaction. My cart sends the information to the payment gateway. The payment gateway returns a result. If the credit card is accepted, then I need to send information to my affiliate service. I don't want my User to have to hit another Submit to send that data.
I need to know if i can do something like:
<?
send this http://someserver.com?a=1&b=2 ;
send that http://anotherserver.com?a=1&c=3;
echo ('$a);
echo ('$b);
echo ('$c);
?>