I miss read what you were after, but if you are getting data back then the post works.
The reason that everything appears to be on your server is that the PHP application is acting as the browser and then displaying the results to the visitor (you).
The PHP app is running on your domain it's output is on your domain and therefore all relative URLs are on your domain.
If you read the HTML returned you can insert a <base href="blah" /> tag into the head or rewrite the paths to be absolute. Either way the page will show to the visitor as if it is on your domain and not Worldpays, the page will no longer be shown over an encrypted link unless you have an SSL certificate for your domain.
I'm assuming you are using Select Checkout, it would be better to collect items into a cart and then pass all the information to the Select Junior interface, as then you can track just about anything you want while leaving WP interface alone, it's only the final card entry stages you can't see.
|