$cFile); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$upload_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); echo date("Y-m-d H:i:s")."\t"; echo "UP\t$upload_size_mb\t"; if($result == "OK") { $time_end = microtime(true); $upload_time = $time_end - $time_start; echo $upload_time."\t"; echo (4/$upload_time)."\n"; } else { echo "Error downloading ($result)\n"; } sleep(60); } ?>