What i want is, once i fill in the information and hit submit, an "external" url will be contacted using GET method. It sends the form data to the url and displayed the response in place of the form.
How do i do it ?
I came up with something basic. But when i put the form on one server and the processing PHP script on another, it fails.
It fails due to security issues. Basically, you cannot use ajax to make calls to a remote server...other than the server you script resides in.
If you are looking for a work around, then you might have to submit your script to your server...and then have PHP forwarding the request to the second server.