I am using oleread to read uploaded xls file. But I am not able to read xlsx files saved in excel-2007 format. can someone help me on how to read xlsx file in PHP.

link|improve this question
What have you tried already? – jjclarkson Mar 27 '10 at 5:13
feedback

2 Answers

PHPExcel is probably your best option. It's very slick and easy to use, I've had no problem with the new XLSX format.

link|improve this answer
2  
(from an anonymous user): Just be aware that PHPExcel can be memory hungry. You should consider this if you will be using it with spreadsheets of a few megabytes or larger. – normalocity Dec 8 '11 at 21:56
feedback
<?php
  include 'simplexlsx.class.php';
  $xlsx = new SimpleXLSX('pricelist.xlsx');
  print_r( $xlsx->rows() );
?>

SimpleXLSX

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.