ApplicantInfo1_FirstName
次の PHP コードが機能し、そのページにあるフォームが表示されます。私の問題は、そのフォームで PHP を使用して firstname テキストフィールドを自動入力する方法です。
<?
$handle=curl_init('https://www.progressivelp.com/onlineapplication/onlineapplication.aspx?sid=Metro2674957490&kid=1');
curl_setopt($handle, CURLOPT_VERBOSE, true);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($handle, CURLOPT_SSL_VERIFYPEER, false);
$content = curl_exec($handle);
echo $content; // show target page
?>