Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Olá pessoas do imaster (:
To com um erro e já pesquisei já fiz tudo oq poderia fazer, porém num sei oque fazer ://
Se alguem conseguir me da uma luz de como poderia fazer funcionar ia agradecer muitoo ---
Bom, chega de papo. Segue o código:
Página em php que envia as info via post em php:
$url = 'https://www.teste.com.br/gerboleto.php';
$data = "login=teste&item=teste&valor=1,00&venc=&nome=teste&email=teste@senoweb.com.br&cpf=0000000000000&retorno=".$ordem."&tipoResp=xml";
$c = curl_init();
curl_setopt($c, CURLOPT_URL, $url);
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, $data);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
$xml = curl_exec ($c);
curl_close ($c);
$xml_doc = simplexml_load_string($xml);
//$xml_doc = new SimpleXMLElement($xml);
//Debug
echo '<pre>';
print_r($xml_doc);
echo '</pre>';
O xml me retorna as info:
<?xmlversion="1.0"encoding="utf-8"?>
<sistema>
<chave>20069-9786344-XXXXXX3</chave>
<lote>20069_10_XXXXX2</lote>
<retorno>h1LExrcWAXpdNa959VsEkvt8Oy3GL8PWyj7d</retorno>
<consultaRetorno>https://www.teste.com.br/retornoxml.php?COD=2&retorno=h1LExrcWAXpdNa959VsEkvt8Oy3GL8PWyj7d</consultaRetorno>
<link>https://teste.com.br/fatura/leitura.php?lote=20069_10_XXXXX2&chave=A4XB-20069-9786344-XXXXXX3</link>
</sistema>
Nisso a página que era pra exibir o xml acima , ela printa um erro :/
Segue o erro:
Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 1: parser error : EntityRef: expecting ';' in /home/teste/public_html/painel/index.php on line 1007
Warning: simplexml_load_string() [function.simplexml-load-string]: rno><consultaRetorno>https://www.teste.com.br/retornoxml.php?COD=2&retorno in /home/teste/public_html/painel/index.php on line 1007
Warning: simplexml_load_string() [function.simplexml-load-string]: ^ in /home/teste/public_html/painel/index.php on line 1007
Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 1: parser error : EntityRef: expecting ';' in /home/teste/public_html/painel/index.php on line 1007
Warning: simplexml_load_string() [function.simplexml-load-string]: nk>https://teste.com.br/fatura/leitura.php?lote=20069_20_CORFO7&chave in /home/teste/public_html/painel/index.php on line 1007
Warning: simplexml_load_string() [function.simplexml-load-string]: ^ in /home/teste/public_html/painel/index.php on line 1007
Alguem sabe o porque ocorre este erro? se alguem puder me ajudar ---
vlw abç
Carregando comentários...