Code Snippets Php

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://example");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
?>