I have a .shtml form that is on a secure site. When a user submit the online form that is on a secure server, I got an error on the .php form success page. I contacted the webserver staff and they said they couldn't get PHP to work on their secure server site. Now here's my question, is there a way to program my form page so when the user click submit, the PHP form success page is launched from the un-secure site? For example, here's the online form:
https://www.myDomain.com:481/mySite/onlineForm.shtml
Now, when the user click the submit button on this form, it is automatically goes to:
https://www.myDomain.com:481/mySite/onlineFormSucess.php
So, here's what I want. When the user click the submit button, is there a way to redirect to something like this:
http://www.myDomain.com/mySite/onlineFormSucess.php
Is this possible?
ljCharlie