home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / dhtmlxMenu.exe / dhtmlxMenu / libCompiler / zip.php < prev    next >
Encoding:
PHP Script  |  2009-08-13  |  221 b   |  9 lines

  1. <?php
  2.     header("Content-type:application/zip");
  3.     header("Content-Disposition: attachment; filename=dhtmlx.zip");
  4.     
  5.     include('./convert.php');
  6.     include("./ziplib.php");
  7.     
  8.     echo zipFromLocation($_GET['location']);
  9. ?>