chupinette
chupinette

Reputation: 456

Convert .xls file to xml using php

I need to implement a functionality where a user can upload an Excel file, that is, .xls file and i need to write a function that will read that file and then save the values in a table, compare them to values in another table and then print some kind of billing quotation.
From what I have read, it seems that the best way to do that is to first convert that file to an xml file and then write a function to parse that xml file. I want to know, is it possible to write a function in php that will convert an xls file to xml. Assuming that the users will save and upload the file as xls.

Thanks.

Upvotes: 2

Views: 5829

Answers (3)

David Morrow
David Morrow

Reputation: 9354

i often let admin users upload a csv file they exported from an xcel file, its much simpler to parse through using http://php.net/manual/en/function.fgetcsv.php

Upvotes: 2

John M
John M

Reputation: 14668

I have been successfully using the 'ABC Excel Parser Pro' from Zakkis.

This allows converting from a XLS file directly into a MySQL table.

A few notes on limitations:

  • column count must match exactly to database columns
  • Excel 2007 format (xlsx) are not supported

Upvotes: 0

gapple
gapple

Reputation: 3474

A quick Google search for "PHP excel parser" turns up PHP Excel Reader, for an open source library to use for reading data from .xls files. There may be others that suit your needs.

Upvotes: 1

Related Questions