我有我的网站example.com,在我的网站上我有一个web html表单到另一个站点,所以结果当前显示在另一个站点。
我想从PHP或其他网站上获取结果并在我自己的网站上显示结果,问题是表单必须在method = Post中提交,所以我看不到任何方法来获取结果
有什么想法吗?
这是从我的网站到目标远程网站的html表单
<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>
答案 0 :(得分:0)
您可以使用$ _POST [&#39;输入字段的名称&#39;] http://consultawebvehiculos.carabineros.cl/index.php。代码将是这样的:
$txtLetras== $_POST['txtLetras'] ;
echo $txtLetras ;
答案 1 :(得分:0)
编写服务器端(php)脚本以充当代理。它将接收表单输入,将其发布到外部站点,从外部站点接收响应并显示响应。
然后您可以通过ajax发布到此脚本(在您的服务器上)并显示它返回的响应。
参考文献 - PHP + CURL