Pls dude, i am a newbie in coding....i am working on an auto index download script. I want the script for users to be able to download jar files as zip !....plz if u have that script, kindly drop it.....thx
Script to Download jar files as zip ....!!!plz help
Collapse
X
-
Code:<?php $zip = new ZipArchive(); if ($zip->open('filename.zip', ZIPARCHIVE::CREATE) !== TRUE) { die ("could not open archive"); } $fileList = Array( 'yourfile.jar' ); foreach ($fileList as $f) { $zip->addFile($f) or die ("ERROR: could not add file: $f"); } $zip->close(); echo "Archive created succesfully."; ?>
Comment
-
I dont think ANGELUS posted code will work ever ..
try to look here
Create ZIP File (zip, archive, ZipArchive, create zip file) - PHP ClassesUnamos los corazones,hoy todos somos multicolores!
Comment
-
Originally posted by Donostex View PostHOW DO I DEFINE MY MIME TYPE@videodesihot
Added after 2 minutes:
Thanks dude.....
Thanks @ANGEL
Comment
Comment