We have a form that site users can fill out on our site. The form submits to and is processed by another site. However, I'd like to show a simple confirmation page from our own site when the user submits the form.
Unfortunately, I don't have access to the remote site's code and can't specify a local confirmation page.
Here's what the flow looks like:
1) User fills out the form on our site and clicks submit.
2) The form info is sent to the remote site
3) A simple "Thank You" page is displayed on our site to the user. It does not need to display or confirm any of the submitted data.
I've thought of creating and submitting to a php script that would simply pass the query string to the remote site, then display our local "Thank You" page. I suspect this is probably simple, but I'm a php newbie and don't know how to do it.
Does anyone know if this is possible? What would the code be to accomplish something like this? Or is there a better way that I've missed?
I'm completely stuck, and appreciate any help you can offer.