$cFile); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$target_url); curl_setopt($ch, CURLOPT_POST,1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $result=curl_exec ($ch); curl_close ($ch); if($result == "OK") { echo date("Y-m-d H:i:s")."\t"; $time_end = microtime(true); $download_time = $time_end - $time_start; echo $download_time."\t"; echo (4/$download_time)."\n"; sleep(60); } else { echo "Error downloading ($result)\n"; } } ?>