Aşağıda sana yardımcı olacak ufak bir örnek yazdım. Uzun zamandır girmiyordum can sıkıntısı işte gerisini artık sen getirirsin umarım.Benden bu kadar. Kodu denemedim
<?php 
error_reporting(E_ALL);
set_time_limit(600);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "http://hotfile.com/checkfiles.html");  
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_COOKIEFILE, "i.txt");
curl_setopt($curl, CURLOPT_COOKIEJAR, "i.txt");
curl_setopt($curl, CURLOPT_USERAGENT, 'User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; tr; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14');
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($curl, CURLOPT_REFERER, 'http://www.google.com.tr/search?hl=tr&q=r10.net&btnG=Ara&meta=lr%3Dlang_tr');
curl_setopt($curl, CURLOPT_POST, 1);
$bilgi = "files=http%3A%2F%2Fhotfile.com%2Fdl%2F182987%2Fc2d67b8%2FPCD.DollDomination.2009.rar.html&but=+Check+Urls+";
curl_setopt($curl, CURLOPT_POSTFIELDS, $bilgi);
$veri = curl_exec($curl);

//daha sonra preg_match ile gelen verileri alıcaksın
?>