You can read and write a file without downloading a browser
<?php $file = 'http://www.remotesite.com/video.avi'; // read the file from remote location $current = file_get_contents($file); // create new file name $name = "path/to/folder/newname.avi"; // Write the contents back to the file file_put_contents($file, $current);
Sundar
source share