I need to read excel file data when upload the file .
Is there any way that can use html5 to read excel file data when file uploading in client side??
heard about
var reader = new FileReader();
any way that we can use this
I need to read excel file data when upload the file .
Is there any way that can use html5 to read excel file data when file uploading in client side??
heard about
var reader = new FileReader();
any way that we can use this
Referring to @mituw16 comment on the question, take a look at the following question: How to parse Excel file in Javascript/HTML5
As a seperate response to work from, I would suggest using a plugin like: https://github.com/SheetJS/js-xlsx To iterate through the spreadsheet and save the information in your database.