I have my website example.com and in my site I have a web html form to another site so the results are currently displayed in the other site.
I would like to fetch the results from the other website in PHP or something and display the results in my own website, the problem is that the form must be submited in method=Post so I do not see any way to fetch the result.
Any idea?
here is the html form from my site to the target remote website
<form action="http://consultawebvehiculos.carabineros.cl/index.php"
name="form1" id="control" method="post">
<input type="hidden" name="accion" value="buscar">
<table id="SEARCH">
<tr><td class="REGISTRATION">
<input name="txtLetras" type="text" class="PLATE" maxlength="2">
</td><td class="SEP">°</td>
<td class="REGISTRATION">
<input name="txtNumeros1" type="text" class="PLATE" maxlength="2">
</td><td class="SEP">°</td>
<td class="REGISTRATION">
<input name="txtNumeros2" type="text" class="PLATE" maxlength="2">
</td></tr></table>
<input type="submit" value="GET RESULT" ></form>