Esempio n. 1
0
 function zip_download($path, $data)
 {
     $plugin = new plugin();
     $rand = uniqid();
     $zippath = $path . "../exporter/" . $data['nama_tabel'] . ".zip";
     if (file_exists($zippath)) {
         unlink($zippath);
     }
     $plugin->createZipFromDir($path, $zippath);
     header("location:http://" . URL_HOME . "/export.zip");
 }