Help for this page

Select Code to Download


  1. or download this
            use Archive::Zip; 
            my $zip = Archive::Zip->new();   # new instance
    ...
            print "Content-Type:application/zip\n";  
            print "Content-Disposition:attachment;filename=$FileNameToWrit
    +e\n\n";
            $zip->writeToFileHandle(*STDOUT);
    
  2. or download this
            use Archive::Zip; 
            my $zip = Archive::Zip->new();   # new instance
    ...
                    $zip->writeToFileHandle(*STDOUT);
                }
            }