How to Create Download File and to Create ZIP File in PHP/MySQL

If you are looking for on how to create Download File and to create ZIP File in PHP/MySQL. This project is going to show you on how to download a file and the extension is ZIP in multiple files using PHP. The user can choose whatever they want to download a ZIP format. You can use this to your future web projects that can downloadable as text files, word documents, in an image, PDF's, and you can save it as a ZIP extension. Creating input file field for the file saving into the database, one CheckBox for selecting files to download, and two buttons in the table to download and to save it as a ZIP format as shown in the image below. Result Here's the simple source code of the image above.
  1.  
  2.         <h1 style="color:blue; font-family:cursive;">Create ZIP file</h1>
  3.                
  4.                 <div style="border:1px solid blue; background:azure; color:blue; font-size:18px; font-weight:bold; font-family:cursive; width:500px; padding:10px;">
  5.                         <form enctype="multipart/form-data" action="" name="form" method="post">
  6.                                 Select File
  7.                                         <input type="file" name="photo" id="photo" /></td>
  8.                                         <input type="submit" name="submit" id="submit" value="Submit" style="border:1px solid blue; background:azure; color:blue; font-size:18px; font-weight:bold; font-family:cursive; border-radius:4px;" />
  9.                         </form>
  10.                 </div>
  11.                 <br />
  12.         <form method="post">
  13.                 <?php if(!empty($error)) { ?>
  14.                         <p style=" border:#C10000 1px solid; background-color:#FFA8A8; color:#B00000;padding:8px; width:588px; margin:0 auto 10px;"><?php echo $error; ?></p>
  15.                 <?php } ?>
  16.                                 <table cellpadding="8" cellspacing="1" border="1" width="50%" style="border:1px solid blue; font-size:18px; color:blue;">
  17.                                                 <thead>
  18.                                                         <tr>
  19.                                                                 <th style="color:red; font-size:18px; font-family:cursive; font-weight:bold;" width="10%" align="center">*</th>
  20.                                                                 <th style="color:blue; font-size:18px; font-family:cursive; font-weight:bold;" width="70%">File Name</th>
  21.                                                                 <th style="color:blue; font-size:18px; font-family:cursive; font-weight:bold;" width="20%">Download</th>
  22.                                                         </tr>
  23.                                                 </thead>
  24.                                                 </tbody>
  25.                                                         <?php
  26.                                                         $query=$conn->query("select * from upload order by id desc");
  27.                                                         while($row=$query->fetch()){
  28.                                                                 $name=$row['name'];
  29.                                                         ?>
  30.                                                        
  31.                                                         <tr>
  32.                                                                 <td align="center">
  33.                                                                         <input type="checkbox" name="files[]" value="<?php echo $name; ?>" />
  34.                                                                 </td>
  35.                                
  36.                                                                 <td style=" font-family:cursive;">
  37.                                                                         &nbsp;<?php echo $name ;?>
  38.                                                                 </td>
  39.                                                                 <td>
  40.                                                                         <a style="text-decoration:none; font-family:cursive; margin-left: 20px;" href="download.php?filename=<?php echo $name;?>">
  41.                                                                                 Download
  42.                                                                         </a>
  43.                                                                 </td>
  44.                                                         </tr>
  45.                                                         <?php }?>
  46.                                                         <tr>
  47.                                                                 <td colspan="3" align="center">
  48.                                                                         <input type="submit" name="createpdf" value="Download as ZIP file" style="background:azure; border: 1px solid blue; border-radius:8px; font-size:18px; padding:10px; font-weight:bold; color:blue;" />
  49.                                                                 </td>
  50.                                                         </tr>
  51.                                                        
  52.                                                 </tbody>
  53.                                 </table>
  54.         </form>
  55.        
As you can see in the image below, you can download individually or in multiple, also you can save it as ZIP format. Result Kindly click the "Download Code" button below for full source code. Thank you very much. Hope that this tutorial will help you a lot. Share us your thoughts and comments below. Thank you so much for dropping by and reading this tutorial post. For more updates, don’t hesitate and feel free to visit this website more often and please share this with your friends or email me at rolyn02@gmail.com. Practice Coding. Thank you very much.

Add new comment