Is it possible for a PHP script to send data via POST to a form?
What I'm trying to do is create an particular ecommerce script. A user fills out a form on my site, which is validated on my site, and then that data needs to get sent to our ecommerce provider's billing form.
Here's the process I'm looking at. (If there's an easier way, let me know.)
1.) User enters name, email address and zip code on a form on our site.
2.) The data is verified via a PHP script on our site to make sure email address is correct and to see if the user is already in our database.
3.) If everything checks out OK, the users name, email address and zip is sent to the email commerce provider's form via https, where the user fills in credit card info.
What I want the user to see is that they enter name, email, zip on the first form, click submit, and if everything is groovy, get sent to the ecommerce providers billing form. So it looks like one click sends the user to the billing form.
Is that possible WITHOUT requiring the ecommerce provider to make changes to their system or to use something like XML-RPC?