Forum Moderators: open
1) POST the form field values to an external URL (for an affiliate program)
2) grab some XML data returned by the external URL (to tell me whether the form was accepted, give me a unique ID for it, etc.)
3) log that XML data PLUS the original form field values in a local MySQL database
4) send the user to a thank-you page on my own site
My issue is how to make the HTML form action, the Javascript POST command, and everything else all play nicely together given that (as I understand it) you can only submit a form once per page so I can't just do sequential POST commands with Javascript (one for the external URL, one to a local PHP script to insert data into the MySQL database).
Please help point me in the right direction if you can.....
Thanks,
Joe
Personally I haven't used PHP for a while so the actual details I don't know. From what you listed though I would have a PHP processing script that the page submits to, could be the same page. Then do all the processing there and redirect to an error page/form page with error message, or send to thank you page.
Looking at some search results the header does sound like it would work. Do you have access to curl? I would try curl first if your server has the library.
I can use PHP Header to send a GET, but the issue is that it then visibly displays the server response. I'm trying to find a way of using PHP to send the form data using GET or POST that happens entirely behind the scenes, so all the user sees is the thank-you page on my site.
Then I need to use PHP to parse the XML response from the server, but first things first.....
Joe