PHP Code: 
<?php
echo  "<br><pre><xmp>"
  
$data['urls'] = "http://uploading.com/files/c8764714";
    
$ckfile tempnam ("/tmp""CURLCOOKIE");
    
$ch curl_init ("http://uploading.com/filechecker/");
    
curl_setopt ($chCURLOPT_COOKIEJAR$ckfile); 
    
curl_setopt ($chCURLOPT_RETURNTRANSFERtrue);
    
$output curl_exec ($ch);
    
$ch curl_init();
    
curl_setopt($chCURLOPT_URL,'http://uploading.com/filechecker/');
    
curl_setopt($chCURLOPT_COOKIEFILE$ckfile);
    
curl_setopt($chCURLOPT_REFERER,'http://uploading.com');
    
curl_setopt($chCURLOPT_USERAGENT'Mozilla/4.73 [en] (X11; U; Linux 2.2.15 i686)');
    
curl_setopt($chCURLOPT_HTTPHEADER,array("Expect:"));
    
curl_setopt($chCURLOPT_CONNECTTIMEOUT60);
    
curl_setopt($chCURLOPT_TIMEOUT60);
    
curl_setopt($chCURLOPT_HEADERtrue);
    
curl_setopt($chCURLOPT_FOLLOWLOCATIONtrue);
    
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    
curl_setopt($chCURLOPT_POST1);
    
curl_setopt($chCURLOPT_POSTFIELDS$data);
    
$content curl_exec($ch);
    
curl_close($ch);

echo  
"<br>$content<pre><xmp>"; echo  "<br>"print_r($_REQUEST);

?>