Warning: file_get_contents(http://www.sepomex.gob.mx/lservicios...xportar.aspx): failed to open stream: HTTP request failed! HTTP/1.1 411 Length Required in C:\xampp-portable\htdocs\TIENDA\b.php on line 15
Este es mi script
Código PHP:
<?php
// Crear un flujo
$opciones = array(
'http'=>array(
'method'=>"POST",
'rblTipo'=>"txt",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$contexto = stream_context_create($opciones);
// Abre el fichero usando las cabeceras HTTP establecidas arriba
$fichero = file_get_contents('http://www.sepomex.gob.mx/lservicios/servicios/CodigoPostal_Exportar.aspx', false, $contexto);
?>