私のウェブサイトはexample.comで、私のサイトでは他のサイトにウェブHTMLフォームを持っているので、現在他のサイトに結果が表示されています。フォームメソッドを送信する私のサイトから別のサイトにPOSTしてリモート結果を取得する
私はPHPなどで他のウェブサイトから結果を取得して自分のウェブサイトに結果を表示したいのですが、問題はフォームをメソッド=投稿に投稿してフェッチする方法がないことです結果。
ここ
が私のサイトから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>
あなたが他のウェブサイトからform' 'の結果を取得する必要があるのはなぜ?フォームを送信する前に 'form'データにアクセスできます。 – guest271314