i have a question.
i have array of base64 which will transform to many PDF file.
but the problem is how to download them once at all.
so maybe there is something i can do.
and one of all is to zip them all.
so how to ZIP array of base64 in PHP.
here is my code file.php
<?php
//$pdf= 'JVBERi0xL...sdfsdgfh';
header('Content-Type: application/pdf');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename = file_".$kb.".pdf");
echo base64_decode($pdf);
?>