Ok here's what happens.
I have a form, I fill it out with details, I then press submit, and it will post to another site (their server) and on that page it will return an XML document. The URL is always the same on the result end.
Now, with the XML that was generated I need to get it and put it into a HTML form on the original site.
Ideally, I want to press submit, not be redirected to this site where the output is, and have the output be automatically parsed into a new HTML form. I have tried looking at xmlHTTP requests and can't get my heard around it...
Ok here is the form post bit:
<form target="_blank" action="www.websiteipostto.com" method="POST">
I then arrive at www.websiteipostto.com with the XML document there. I will greatly appreciate any help.
Regards