<?php
// Crea un nuevo recurso de cURL
$ch = curl_init();
// Establece la URL y otras opciones apropiadas
curl_setopt($ch, CURLOPT_URL, 'http://www.example.com/');
curl_setopt($ch, CURLOPT_HEADER, 0);
// Copia el recurso
$ch2 = curl_copy_handle($ch);
// Captura la URL (http://www.example.com/) y la pasa al navegador
curl_exec($ch2);
// Cierra el recurso cURL y libera recursos del sistema
curl_close($ch2);
curl_close($ch);
?>