I Have several Question or POST and And Requesting the infomation back
I.E.
I'm Posting information to a Different Server that is useing a .pl to process Credit Card Information
It will let me send data via POST and return a responce in this format
"YAUTH/TKT 019829","Address and Zip Code Do Not Match","CVV2 Not a Match"
Can Any body tell me how I can PHP to POST infroamtion to this server and retrieve the results
This is what I got so for...
// Remote URL
$remote_url = "https://www.eProcessingNetwork.Com/cgi-bin/tdbe/transact.pl";
// Open the connection to the remote server
$fp = @fopen("$remote_url","w");
// here is where I get lost
do I use fputs() to post the info or what there is a perl verssion and a ASP verssion they have to accomplish the task but I would like to keep PHP for this script
Thanks for any help