PHP - Convert HTML To PDF

In this tutorial we will create a Convert HTML To PDF using PHP. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. It is mostly used by a newly coders for its user friendly environment. So Let's do the coding...

Before we get started:

First you have to download & install XAMPP or any local server that run PHP scripts. Here's the link for XAMPP server https://www.apachefriends.org/index.html. And this is the link for the jquery that i used in this tutorial https://jquery.com/. Lastly, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

Creating Database

Open your database web server then create a database name in it db_pdf, after that click Import then locate the database file inside the folder of the application then click ok. tut1

Creating the database connection

Open your any kind of text editor(notepad++, etc..). Then just copy/paste the code below then name it conn.php.
  1. <?php
  2.         $conn = new mysqli('localhost', 'root', '', 'db_pdf');
  3.        
  4.         if(!$conn){
  5.                 die("Error: Failed to connect to database!");
  6.         }
  7. ?>

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into you text editor, then save it as index.php.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7. <body>
  8.         <nav class="navbar navbar-default">
  9.                 <div class="container-fluid">
  10.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  11.                 </div>
  12.         </nav>
  13.         <div class="col-md-3"></div>
  14.         <div class="col-md-6 well">
  15.                 <h3 class="text-primary">PHP - Convert HTML To PDF</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <button type="button" class="btn btn-success" data-toggle="modal" data-target="#form_modal"><span class="glyphicon glyphicon-plus"></span> Add member</button>
  18.                 <a href="export.php" class="btn btn-primary pull-right"><span class="glyphicon glyphicon-export"></span> Export As PDF</a>
  19.                 <br /><br />
  20.                 <table class="table table-bordered">
  21.                         <thead class="alert-info">
  22.                                 <tr>
  23.                                         <th>Firstname</th>
  24.                                         <th>Middlename</th>
  25.                                         <th>Lastname</th>
  26.                                         <th>Address</th>
  27.                                         <th>Civil Status</th>
  28.                                 </tr>
  29.                         </thead>
  30.                         <tbody style="background-color:#fff;">
  31.                                 <?php
  32.                                         require 'conn.php';
  33.                                         $query = $conn->query('SELECT * FROM `member` ORDER BY `lastname` ASC') or die($conn->error());
  34.                                         while($fetch = $query->fetch_array()){
  35.                                 ?>
  36.                                 <tr>
  37.                                         <td><?php echo $fetch['firstname']?></td>
  38.                                         <td><?php echo $fetch['middlename']?></td>
  39.                                         <td><?php echo $fetch['lastname']?></td>
  40.                                         <td><?php echo $fetch['address']?></td>
  41.                                         <td><?php echo $fetch['civil_status']?></td>
  42.                                 </tr>
  43.                                 <?php
  44.                                         }
  45.                                 ?>
  46.                         </tbody>
  47.                 </table>
  48.         </div>
  49.         <div class="modal fade" id="form_modal" tabindex="-1" role="dialog" aria-hidden="true">
  50.                 <div class="modal-dialog" role="document">
  51.                         <form action="save_form.php" method="POST">
  52.                                 <div class="modal-content">
  53.                                         <div class="modal-body">
  54.                                                 <div class="col-md-3"></div>
  55.                                                 <div class="col-md-6">
  56.                                                         <div class="form-group">
  57.                                                                 <label>Firstname</label>
  58.                                                                 <input type="text" name="firstname" class="form-control" require="required"/>
  59.                                                         </div>
  60.                                                         <div class="form-group">
  61.                                                                 <label>Middlename</label>
  62.                                                                 <input type="text" name="middlename" class="form-control" require="required"/>
  63.                                                         </div>
  64.                                                         <div class="form-group">
  65.                                                                 <label>Lastname</label>
  66.                                                                 <input type="text" name="lastname" class="form-control" require="required"/>
  67.                                                         </div>
  68.                                                         <div class="form-group">
  69.                                                                 <label>Address</label>
  70.                                                                 <input type="text" name="address" class="form-control" require="required"/>
  71.                                                         </div>
  72.                                                         <div class="form-group">
  73.                                                                 <label>Civil Status</label>
  74.                                                                 <input type="text" name="civil_status" class="form-control" require="required"/>
  75.                                                         </div>
  76.                                                 </div>
  77.                                         </div>
  78.                                         <div style="clear:both;"></div>
  79.                                         <div class="modal-footer">
  80.                                                 <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  81.                                                 <button name="save" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span> Save</button>
  82.                                         </div>
  83.                                 </div>
  84.                         </form>
  85.                 </div>
  86.         </div>
  87. </body>
  88. <script src="js/jquery-3.2.1.min.js"></script>
  89. <script src="js/bootstrap.js"></script>
  90. </html>

Creating PHP Query

This code contains the php query of the application. This code will store the data inputs to the database server. To do that just copy and write this block of codes inside the text editor, then save it as save_form.php.
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         if(ISSET($_POST['save'])){
  5.                 $firstname = $_POST['firstname'];
  6.                 $middlename = $_POST['middlename'];
  7.                 $lastname = $_POST['lastname'];
  8.                 $address = $_POST['address'];
  9.                 $civil_status = $_POST['civil_status'];
  10.        
  11.                
  12.                 $conn->query("INSERT INTO `member` VALUES('', '$firstname', '$middlename', '$lastname', '$address', '$civil_status')") or die($conn->error());
  13.                
  14.                 header('location: index.php');
  15.         }
  16. ?>

Creating the Main Function

This code contains the main function of the application. This code will convert the html data into a pdf format. To do this just copy and write the code inside the text editor, then save it as export.php.
  1. <?php
  2. require_once 'dompdf/autoload.inc.php';
  3.  
  4.  
  5. use Dompdf\Dompdf;
  6.  
  7.  
  8.  
  9. $document = new Dompdf();
  10.  
  11.  
  12. $output = "
  13. <html>
  14.         <head>
  15.                 <link rel='stylesheet' type='text/css' href='css/bootstrap.css'/>
  16.         </head>
  17. <body>
  18. <table class='table table-bordered'>
  19.         <thead class='alert-info'>
  20.                 <tr>
  21.                         <th>Firstname</th>
  22.                         <th>Middlename</th>
  23.                         <th>Lastname</th>
  24.                         <th>Address</th>
  25.                         <th>Civil Status</th>
  26.                 </tr>
  27.         </thead>
  28. ";
  29.  
  30. require_once 'conn.php';
  31.  
  32. $query = $conn->query("SELECT * FROM `member` ORDER BY `lastname` ASC") or die($conn->error());
  33.  
  34. while($fetch = $query->fetch_array()){
  35.        
  36. $output .= '
  37.         <tbody style="background-color:#fff;"> 
  38.                 <tr>
  39.                         <td>'.$fetch['firstname'].'</td>
  40.                         <td>'.$fetch['middlename'].'</td>
  41.                         <td>'.$fetch['lastname'].'</td>
  42.                         <td>'.$fetch['address'].'</td>
  43.                         <td>'.$fetch['civil_status'].'</td>
  44.                 </tr>
  45.         </tbody>
  46. ';
  47.  
  48. }
  49.  
  50.  
  51. $output .= '</table></body></html>';
  52.  
  53. $document->loadHtml($output);
  54.  
  55. $document->setPaper('A4', 'landscape');
  56.  
  57. $document->render();
  58.  
  59. $document->stream("Sourcecodester", array("Attachment"=>0));
  60.  
  61. ?>
Note:In order to make this work make sure you download the dompdf There you have it we successfully created Convert HTML To PDF using PHP. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Comments

Cool

Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\xampp\htdocs\PDF\dompdf\src\Dompdf.php

Add new comment