7
I made a system for a school, where from the Excel file, where are stored all school newsletters, I export to .htm
, where it generates some files with this extension and from there I can cut the newsletters and compare with the name of the students who are in the database. However, I wanted to do this export process automatically.
It is possible to perform this operation?
The image below are the files generated after exporting an Excel file(.xls
). In case there are several of these files, because the source file, in excel format, had several "navigation guides". And the content of these files is the format .html
traditional...
take a look at this site and see if it helps you. http://www.fatbellyman.com/webstuff/xml_to_html/
– Felipe Goncalves
It doesn’t help much because in my case is excel file extension xls...
– LocalHost
Sorry, I didn’t quite understand your doubt. You today export XLS to HTML manually?
– Brittz
Yeah, I was wondering if there’s a way to do it by code...
– LocalHost
I don’t understand why you do this via PHP. Does the user use a website, or does he use Excel directly? Your question could be clearer.
– Luiz Vieira
My question is to make the process easier, since the system I created, takes the html file, and makes the clippings of the newsletters, which are in these various files. The system identifies, the name of the Ln according to the bank, and cuts from the starting table at the end of a single student’s report card individually. However, I did the system to upload these multiple files like this in the photo, but whoever is using the system found it difficult, because they have to export the file first and upload all the files. To send the xls file, and to do these exports by code would facilitate...
– LocalHost