$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "http://cprogramming.bootzlabs.com/");
curl_setopt($curl, CURLOPT_HEADER, 0);
// copy the handle
$curl2 = curl_copy_handle($curl);
// pass the URL to the browser
curl_exec($curl2);
curl_close($curl);
curl_close($curl2);
/*
run:
Check your browser
*/