
23/09/2008, 14:10
|
 | | | Fecha de Ingreso: febrero-2003 Ubicación: En algun lugar de cancun
Mensajes: 384
Antigüedad: 22 años, 1 mes Puntos: 0 | |
Respuesta: Algun ejemplo de Enviar variables GET con CuRL gracias ya lo investigue tan sencillo como poner esto
$url = "http://www.dominio.com/ejemplo.php?valor=2";
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
$str = curl_exec($curl);
echo $str;
__________________ solo firma |