A
Anonymous
Guest
i want to copy a zip file from a directory to a directory. if you have any sample pls write me. thanks
copy(source,destination);
<?php
$srcfile = "path/filename";
$dstfile = "path/filename";
copy($srcfile,$dstfile);
?>