Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/10/2010, 12:58
Grox
 
Fecha de Ingreso: mayo-2008
Mensajes: 82
Antigüedad: 16 años, 10 meses
Puntos: 3
cURL, sin publicidad y imagenes.

Bueno yo tengo el siguiente codigo:
Código PHP:
<?php
$c 
curl_init('direccion');
$body 'nick=cuenta&pass=contraseña';
curl_setopt($cCURLOPT_HEADER1); 
curl_setopt($cCURLOPT_FOLLOWLOCATION1); 
curl_setopt($cCURLOPT_COOKIEJAR'/tmp/cookie01.txt');
curl_setopt($cCURLOPT_COOKIEFILE'/tmp/cookie01.txt');
curl_setopt($cCURLOPT_POSTtrue);
curl_setopt($cCURLOPT_POSTFIELDS$body);


$page curl_exec($c);
curl_close($c);
echo 
$page;

?>
¿Como puedo hacer que el cURL no lea publicidades, ni imagenes?