[PHP TUT] UPLOADING FILES FROM ANOTHER SERVER TO YOUR DIRECTORY
Hi all, Download files directly to your directory without stress or consumption of Bandwidth, just copy the source code and save then, then run! <?php if(isset($_POST[‘link’])) { if(!$_POST[‘link’]) { die(‘Empty Link’); } elseif(!$_POST[‘dir’]) { die(‘Empty Dir’); } else { copy($_POST[‘link’],$_POST[‘dir’])or die( “Error during upload, Try again later”); } } ?> <form action=”” method=”post”> Source Link<small>(eg.…
Read More [PHP TUT] UPLOADING FILES FROM ANOTHER SERVER TO YOUR DIRECTORY