Forum Moderators: coopster
<?php
$URL = "www.domain.com";
$ch=curl_init($URL);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$source_text=curl_exec($ch);
curl_close($ch);
print $source_text;
?>
The print is just to see what you have fetched for testing purposes.