How to Export MySQL Database into CSV File using PHP/MySQLi

Getting Started

I've used bootstrap to improve the design of presentation of this tutorial. This bootstrap is included in the downloadable of this tutorial but, if you want, you may download bootstrap using this link.

Creating our Database

Next, we create our MySQL database that we are going to export into CSV file. I've included a .sql file in the downloadable of this tutorial which is a mysql database file. All you have to do is import the said file. If you have no idea on how to do this, please refer to my tutorial, How import .sql file to restore MySQL database. You should be able to create a database with tables named mydatabase.

Creating our Link to Export

Next, we are going to create a link that directs to our export code. We can do this by creating our index file named index.php. Also, I've included the table that shows the data that we are going to export.
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.         <meta charset="utf-8">
  5.         <title>Export MySQL Database into CSV File using PHP/MySQLi</title>
  6.         <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
  7. </head>
  8. <body>
  9. <div class="container">
  10.         <h1 class="page-header text-center">Export MySQL Database into CSV File</h1>
  11.         <div class="row">
  12.                 <div class="col-sm-8 col-sm-offset-2">
  13.                         <div class="row">
  14.                                 <div class="col-sm-1">
  15.                                         <a href="export.php" class="btn btn-primary btn-sm">Export</a>
  16.                                 </div>
  17.                                 <div class="col-sm-11">
  18.                                         <?php
  19.                                                 session_start();
  20.  
  21.                                                 if(isset($_SESSION['message'])){
  22.                                                         echo $_SESSION['message'];
  23.  
  24.                                                         unset($_SESSION['message']);
  25.                                                 }
  26.                                         ?>
  27.                                 </div>
  28.                         </div>
  29.                         <table class="table table-bordered table-striped" style="margin-top:20px;">
  30.                                 <thead>
  31.                                         <th>UserID</th>
  32.                                         <th>Firstname</th>
  33.                                         <th>Lastname</th>
  34.                                         <th>Address</th>
  35.                                 </thead>
  36.                                 <tbody>
  37.                                         <?php
  38.                                         //connection
  39.                                         $conn = new mysqli('localhost', 'root', '', 'mydatabase');
  40.  
  41.                                         $sql = "SELECT * FROM members";
  42.                                         $query = $conn->query($sql);
  43.  
  44.                                         while($row = $query->fetch_array()){
  45.                                                 ?>
  46.                                                 <tr>
  47.                                                         <td><?php echo $row['id']; ?></td>
  48.                                                         <td><?php echo $row['firstname']; ?></td>
  49.                                                         <td><?php echo $row['lastname']; ?></td>
  50.                                                         <td><?php echo $row['address']; ?></td>
  51.                                                 </tr>
  52.                                                 <?php
  53.                                         }
  54.  
  55.                                         ?>
  56.                                 </tbody>
  57.                         </table>
  58.                 </div>
  59.         </div>
  60. </div>
  61. </body>
  62. </html>

Creating our Export Script

Lastly, we create our export script by creating a new file, name it as export.php and paste the below code.
  1. <?php
  2.         session_start();
  3.         //connection
  4.         $conn = new mysqli('localhost', 'root', '', 'mydatabase');
  5.  
  6.         $sql = "SELECT * FROM members";
  7.         $query = $conn->query($sql);
  8.  
  9.         if($query->num_rows > 0){
  10.                 $delimiter = ',';
  11.                 //create a download filename
  12.                 $filename = 'members.csv';
  13.  
  14.                 $f = fopen('php://memory', 'w');
  15.  
  16.                 $headers = array('Id', 'Firstname', 'Lastname', 'Address');
  17.         fputcsv($f, $headers, $delimiter);
  18.  
  19.         while($row = $query->fetch_array()){
  20.                 $lines = array($row['id'], $row['firstname'], $row['lastname'], $row['address']);
  21.                 fputcsv($f, $lines, $delimiter);
  22.             }
  23.            
  24.             fseek($f, 0);
  25.             header('Content-Type: text/csv');
  26.             header('Content-Disposition: attachment; filename="' . $filename . '";');
  27.             fpassthru($f);
  28.             exit;
  29.         }
  30.         else{
  31.                 $_SESSION['message'] = 'Cannot export. Data empty';
  32.                 header('location:index.php');
  33.         }
  34. ?>
That ends this tutorial. Happy Cpding :)

Add new comment