如何使用Curl从这个表单中获取数据?

时间:2017-12-09 11:26:59

标签: php curl post http-post

我在this link上有一个页面,并通过POST表单发送参数。此参数的名称为 CGC ,测试值为 05262967000165 。我需要用curl获取此页面的内容,但我尝试没有成功。

有人可以帮我从这个页面获取HTML吗?感谢

<?php

$cr = curl_init(); 
curl_setopt($cr, CURLOPT_URL, "https://www.sefaz.ba.gov.br/scripts/cadastro/cadastroBa/consultaBa.asp");
curl_setopt($cr, CURLOPT_RETURNTRANSFER, true); 
curl_setopt($cr, CURLOPT_POST, 1);
curl_setopt($cr, CURLOPT_POSTFIELDS, "CGC=05262967000165");

$retorno = curl_exec($cr); 
curl_close($cr); 

echo $retorno;

0 个答案:

没有答案