Cara membuat halaman download ditunggu 3 detik <?php // if name via get equals ‘download”, show the downloading message. if($_GET[‘name’] == “download”){ echo “Downloading … “; } else { // set refresh to 3 seconds, make the variable name be ‘download’ via the get method; header(“Refresh: 3: url=http://maque.kodingen.com/index.php?name=download”); // show this message echo “You can download in 3 seconds.”; } ?>

Read More

Fungsi untuk unzip file menggunakan php = <?php function unzip($location,$newLocation){ if(exec(“unzip $location”,$arr)){ mkdir($newLocation); for($i = 1;$i< count($arr);$i++){ $file = trim(preg_replace(“~inflating: ~”,””,$arr[$i])); copy($location.’/’.$file,$newLocation.’/’.$file); unlink($location.’/’.$file); } return TRUE; }else{ return FALSE; } } include ‘functions.php’; if(unzip(‘zipedfiles/test.zip’,’unziped/myNewZip’)) echo ‘Success!’; else

Read More
WhatsApp chat