Ok, here is what I would like to do and I hope you can help me.
I process bank account information and I would like my script to get the bank name from the routing number. Now the website that supplies this info is
http://www.checkgateway.com/bankinquiry.asp
but what I was hopping I could do is simply get the info from bankprofile.asp and just add the ?BankRoutingNumber=265270222 but that doesn’t work so what I thought I could do is if I got the initial page to submit through my script it would work but I can’t figure out how to do it.
I thought it would be something like this:
$path = "http://www.checkgateway.com/bankinquiry.asp";
$path2 = "http://www.checkgateway.com/bankprofile.asp";
$fp = fopen ($path, "r+");
fputs($fp,"POST $path2/ BankRoutingNumber:265270222");
$buffer = fgets($fd, filesize($path2));
echo $buffer;
fclose ($fp);
I really have tried and tried but I can’t think of how to do it.
Thank you,
Andrew