Convert excel to xml in php
I want to read an Excel file and create an XML file from this data. Is this possible in php?
thanks
A quick google search of this PHP project on CodePlex, you can take a look
It supports:
... write and read from different spreadsheet file formats such as Excel (BIFF) .xls, Excel 2007 (OfficeOpenXML) .xlsx, CSV, Libre / OpenOffice Calc.ods, Gnumeric, PDF, HTML, ... This project built around the Microsoft OpenXML and PHP standard.
Yes, but I do not know about the existing libs for php to convert them.
There is some information about excel file formats, so you can write code
old: http://www.openoffice.org/sc/excelfileformat.pdf new: http://msdn.microsoft.com/en-us/library/aa338205(v=office.12).aspx
this can give you a start: http://sourceforge.net/projects/phpexcelreader/ :)