I'm trying to add this (www.dha.gov.za/status/index.php) to my page. I want a form to post to the page and then print the result on my page, with out any redirecting. The form is pretty simple:
<form action="http://www.dha.gov.za/status/index.php" method="POST">
<label>ENTER ID Number </label><br />
<INPUT NAME="id" TYPE="text" MAXLENGTH=13 SIZE=13 style="font-size:32px;" />
<INPUT TYPE=submit NAME="vstatus" VALUE="ID Application" >
<INPUT TYPE=submit NAME="vstatus" VALUE="Passport Application" >
<INPUT TYPE=submit NAME="vstatus" VALUE="Marital">
<INPUT TYPE=submit NAME="vstatus" VALUE="Alive or Deceased">
<INPUT TYPE=submit NAME="vstatus" VALUE="ID Duplicate">
<INPUT TYPE=submit NAME="vstatus" VALUE="Permit Application">
</form>
For example if I type in my ID number and click "Marital", I get redirected to a page which says "MARRIAGE STATUS = SINGLE", I want to stay on the same page as the form, and display this and all the other possible "Submit" buttons, Passport application, ID application etc.
I CANNOT see the PHP portion of the file (www.dha.gov.za/status/index.php) or its contents, I can just see the output of POSTing to it. It is this output that I want to display.