apr

FILE TO FILE TRANSFER

apr
Jun 2nd, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1.  
  2. <?php
  3.  
  4. // give files url for downloading
  5. $file_one = 'http://wordpress.org/latest.zip';
  6. $newfile = 'latest.zip';
  7. if (copy($file_one, $newfile)) {
  8. echo "success <br>";
  9. }
  10. // src from http://thearnob.wordpress.com/?p=22
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment