Exporting data in to a format is a very common features in website.There is a lot of plugin which is used to export table data into xml,csv and png format but that will use for separate jquery file for each exporting format.
The tableExport is a wonderful jquery plugin which extracting 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 not need any other jquery plugin to extract data from tables.You can integrate tableExportplugin very easily with your project.
Here i will let you know basic use of tableExport jquery plugin with HTML table and with dynamic data using php and mysql.
We Can export HTML tables to the following formats:
- JSON
- XML
- PNG
- CSV
- TXT
- SQL
- MS-Word
- Ms-Excel
- Ms-Powerpoint
How To Use table Export JQuery plugin :
following are basic files which you need to include into your head section of
index.html
file or Project. jquery plugin is necessary to tableExport
jquery plugin.1 | <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.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.1 | <script type="text/javascript" src="html2canvas.js"></script> |
How To Import Table data into PDF format:
we need to include below files into your head section to export table data into PDF format.
1 | <script type="text/javascript" src="jspdf/libs/sprintf.js"></script> |
Other option are:
separator: ‘,’
ignoreColumn: [2,3],
tableName:’yourTableName’
type:’csv’
pdfFontSize:14
pdfLeftMargin:20
escape:’true’
htmlContent:’false’
consoleLog:’false’
ignoreColumn: [2,3],
tableName:’yourTableName’
type:’csv’
pdfFontSize:14
pdfLeftMargin:20
escape:’true’
htmlContent:’false’
consoleLog:’false’
Other Type are:
1 | {type:'json',escape:'false'} |
You can also check other tutorial of Export Data with PHP,
- Exporting Data to Excel with PHP and MySQL
- Export Data to CSV and Download Using PHP and MySQL
- Import CSV File Into MySql Using PHP
- Export HTML Table Data to Excel, CSV, PNG and PDF using jQuery Plugin
- Export the jQuery Datatable data to PDF,Excel,CSV and Copy
How to use export table with php and mysql.
Here i will demonstrate integration of exportTable with php and mysql,its very easy and simple.We need to 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
jquery plugin.1 | <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
Step 2: Create PHP Connection with MYSQL database to get all records from database.
1 | <?php |
Step 3: Create UI of table grid and bind MYSQL records with HTML table.
1 | <div class="row" style="height:300px;overflow:scroll;"> |
Step 4: Call exportTable function to export data on
click
of format icon.1 | <li><a href="#" onclick="$('#employees').tableExport({type:'json',escape:'false'});"> <img src="images/json.jpg" width="24px"> JSON</a></li> |
You can get more details from Official Website
0 komentar:
Post a Comment