Below is an example of my file on my www.MyExampleDomain.com domain.
When form button is submitted the browser refreshes and the browser window URL says www.XMLExampleDomain.com and the browser content has list of names in XML format.
How can I save that XML result to a .xml file on www.MyExampleDomain.com ?
myfile.htm
<HTML>
<FORM METHOD="POST" ACTION="http://www.XMLExampleDomain.com">;
<INPUT TYPE="HIDDEN" NAME="req" VALUE="api">
<INPUT TYPE="HIDDEN" NAME="mode" VALUE="name_list">
<INPUT TYPE="RADIO" NAME="api_key" VALUE="a234985929042a">DVD Comedy <br>
<INPUT TYPE="RADIO" NAME="api_key" VALUE="s863950385433a">DVD Action <br>
<INPUT TYPE="SUBMIT" VALUE="Click Here to List Names">
</FORM>
</HTML>