Export HTML Table Data to Excel, CSV, PNG and PDF using jQuery Plugin

In this jQuery tutorial, We will export HTML table data into Excel, CSV, PNG and PDF using jQuery Plugin. Exporting data into a format is a very common feature in websites. There is a lot of plugins which are used to export table data into xml, csv and png format but that will use in a separate jquery file for each exporting format.

The tableExport is a wonderful jquery plugin that extracts table data into all formats like JSON, XML, PNG, CSV, TXT, SQL, MS-Word, Ms-Excel, Ms-Powerpoint and PDF, so with help of this jquery plugin you don’t need any other jquery plugin to extract data from tables. You can integrate tableExport plugin very easily with your project.

Here, I will let you know the basic use of tableExport jquery plugin with HTML table, The table listing data with dynamic data using PHP and MySQL.

Simple Example to extract table data into JSON XML,PNG,CSV,TXT,SQL,MS-Word,Ms-Excel,Ms-Powerpoint and PDF format using jquery and php

We Can export HTML tables to the following formats:

  1. JSON
  2. XML
  3. PNG
  4. CSV
  5. TXT
  6. SQL
  7. MS-Word
  8. Ms-Excel
  9. Ms-Powerpoint
  10. PDF

How To Use table Export JQuery plugin :

There are the Following dependencies libs that we need to include into the head section of index.html file or Project. The jQuery plugin is necessary to tableExport the jquery plugin.

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="tableExport.js"></script>
<script type="text/javascript" src="jquery.base64.js"></script>

How To Import Table data into PNG format:

We need to include html2canvas.js file into your head section to export table data into PNG format.

<script type="text/javascript" src="html2canvas.js"></script>

How To Import Table data into PDF format:

We need to include the below files into your head section to export table data into PDF format.

<script type="text/javascript" src="jspdf/libs/sprintf.js"></script>
<script type="text/javascript" src="jspdf/jspdf.js"></script>
<script type="text/javascript" src="jspdf/libs/base64.js"></script>

Other options are:

  • separator: ‘,’
  • ignoreColumn: [2,3]
  • tableName:’yourTableName’
  • type:’csv’
  • pdfFontSize:14
  • pdfLeftMargin:20
  • escape:’true’
  • htmlContent:’false’
  • consoleLog:’false’

Other Types are:

{type:'json',escape:'false'}
{type:'json',escape:'false',ignoreColumn:'[2,3]'}
{type:'json',escape:'true'}

{type:'xml',escape:'false'}
{type:'sql'}

{type:'csv',escape:'false'}
{type:'txt',escape:'false'}

{type:'excel',escape:'false'}
{type:'doc',escape:'false'}
{type:'powerpoint',escape:'false'}

{type:'png',escape:'false'}
{type:'pdf',pdfFontSize:'7',escape:'false'}

You can also check other tutorial of Export Data with PHP,

How to export table data with PHP and MySQL.

Let’s demonstrate the integration of exportTable with PHP and MySQL, it’s very easy and simple. We need to follow following below points to export html table data into Excel, CSV, JSON, PDF, PNG using jQuery,php and MySQL.

Step 1: Include all necessary files of exportTable the jquery plugin into the head section of index.php

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>

<script type="text/javascript" src="tableExport.js"></script>
<script type="text/javascript" src="jquery.base64.js"></script>
<script type="text/javascript" src="html2canvas.js"></script>
<script type="text/javascript" src="jspdf/libs/sprintf.js"></script>
<script type="text/javascript" src="jspdf/jspdf.js"></script>
<script type="text/javascript" src="jspdf/libs/base64.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

Step 2: Create PHP Connection with MySQL database to get all records from the database.

<?php
//mysql_connect('localhost', 'root');
//mysql_select_db('test');
$con=mysqli_connect("localhost","root","pass","test");

$qry="SELECT * FROM employee";
$result=mysqli_query($con, $qry);

$records = array();

while($row = mysql_fetch_assoc($result)){ 
   $records[] = $row;
}
?>

Step 3: Create UI of table grid and bind MYSQL records with HTML table.

<table id="employees" class="table table-striped">
				<thead>			
					<tr class="warning">
						<th>Id</th>
						<th>Name</th>
						<th>Salary</th>
						<th>age</th>
					</tr>
				</thead>
				<tbody>
				<?php foreach($records as $rec):?>
					<tr>
						<td><?php echo $rec['id']?></td>
						<td><?php echo $rec['employee_name']?></td>
						<td><?php echo $rec['employee_salary']?></td>
						<td><?php echo $rec['employee_age']?></td>
					</tr>
					<?php endforeach; ?>
					</tbody>
					</table>

Step 4: Call exportTable function to export data on click of format icon.

<ul>

   <li><a href="#"> <img src="images/json.jpg" width="24px"> JSON</a></li>


   <li><a href="#"><img src="images/json.jpg" width="24px">JSON (ignoreColumn)</a></li>

</ul>

You can download source code and Demo from below link

6 thoughts on “Export HTML Table Data to Excel, CSV, PNG and PDF using jQuery Plugin

  1. Hi

    Tnanks for sharing

    But no PDF to see
    Furder if i dowload .csv file and must always add extension to file ?

    Maybe i forgot something?

    Thank and regards

Leave a Reply

Your email address will not be published. Required fields are marked *