Skip to content
Advertisement

export generated data to excel with php/js

I have 2 date input fields(startdate,endate) that a user can selected. Once selected, data will show that is registered between the 2 dates provided by the user in a table format. how can I export that data that is shown in the table to excel with a button click without third party plugins ?

code that I used :

JavaScript

Advertisement

Answer

The exportTableToExcel() function convert HTML table data to excel and download as XLS file (.xls).

=> tableID – Required. Specify the HTML table ID to export data from.

=> filename – Optional. Specify the file name to download excel data.

js code:-

JavaScript

Html Table: The HTML table contains some users data with some basic fields, in Your case you have dates, in below code you see name, email,,etc…

JavaScript

The button triggers exportTableToExcel() function to export HTML table data using JavaScript.

JavaScript

If you want to export data with the custom file name, pass your desired file name in the exportTableToExcel() function.

JavaScript

This code helps you to add export functionality in the table data without any third-party jQuery plugin or server-side script. You can easily export the table data using minimal JavaScript code. Also, the functionality of the example code can be extended as per your needs.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement