try using this part of coding:
you should change "url of file to be downloaded to the server" to the actual url
curl_setopt($ch, CURLOPT_URL,"url of file to be downloaded to the server");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result=...