I'm having a problem with a payment gateway that takes form data and returns a string.
Most processors that I've worked with have a redirect url that you can specify in the initial form that you can use to capture the data.
This is the first time I have to work in PHP and there is no return url. The PHP page simply displays a bunch of values.
How could I go about capturing these in my application?
The tech support team said that it's done through TCP/IP but they didn't elaborate:
For example I pass this querystring:
Wong&cardnumber=4000000000000010&cvv=123&cardtype=Mastercard&expmonth=03&expyear=04&amount=19.95&address=6 Lyon Park Road&city=North Ryde&state=NSW&country=AUS&zip=2113&email=weiyuanw@opentec.com.au
The page transaction.php replies with this:
D","OP500","Exceeded Trans No. in this month","1378067"
How can I capture this information in some variables using VB / ASP or PHP.
Thanks for your help.
Most processors that I've worked with have a redirect url that you can specify in the initial form that you can use to capture the data.
This is the first time I have to work in PHP and there is no return url. The PHP page simply displays a bunch of values.
How could I go about capturing these in my application?
The tech support team said that it's done through TCP/IP but they didn't elaborate:
For example I pass this querystring:
Wong&cardnumber=4000000000000010&cvv=123&cardtype=Mastercard&expmonth=03&expyear=04&amount=19.95&address=6 Lyon Park Road&city=North Ryde&state=NSW&country=AUS&zip=2113&email=weiyuanw@opentec.com.au
The page transaction.php replies with this:
D","OP500","Exceeded Trans No. in this month","1378067"
How can I capture this information in some variables using VB / ASP or PHP.
Thanks for your help.