我希望,从我的网站,执行另一个网站的形式并阅读结果,尝试使用Curl,但我不确定它是否是好方法。
我想要执行表单的网站是http://www.rpe.rbq.gouv.qc.ca/GIC_Public_NET/RPE/GIC111/GIC111PR01RechercheEntrepreneur.aspx
表单重定向到自身,但是当我使用浏览器自己发送表单时,网址为GIC111PR02ListeResultats.aspx
可以做我想做的事吗?
extract($_POST);
//set POST variables
$url = 'http://www.rpe.rbq.gouv.qc.ca/GIC_Public_NET/RPE/GIC111/GIC111PR01RechercheEntrepreneur.aspx';
$fields = array(
'ctl00$ZonePrincipal$txtNom'=>urlencode('jean-sebastien duhamel')
);
$fields_string ='';
//url-ify the data for the POST
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
rtrim($fields_string,'&');
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);
//execute post
$result = curl_exec($ch);
//close connection
curl_close($ch);