grab a web page with cURL

grab a web page with cURL

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.programmershelp.co.uk");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
?>