Hola amigos foristas aca dejo algo que me encontre por dando vueltas. me parece super bueno.
http://phpexcel.codeplex.com/
Requerimientos:
* PHP 5.2+
* GD extension
* XML extension
* ZIP extension
una lineas finales de un ejemplo para que miremos lo que podemos llegar a trabajar y los formatos que se pueden manejar.
Código PHP:
//Now we save the created document in the Exce 2007 format
$excelWriter = PHPExcel_IOFactory::createWriter($excel, 'Excel2007');
$excelWriter->save('Products.xlsx');
//in PDF
$pdfWriter = PHPExcel_IOFactory::createWriter($excel, 'PDF');
$pdfWriter->save('Products.pdf');
//in HTML
$htmlWriter = PHPExcel_IOFactory::createWriter($excel, 'HTML');
$htmlWriter->save('Products.html');
//and in the old binary format
$excelBinaryWriter = PHPExcel_IOFactory::createWriter($excel, 'Excel5');
$excelBinaryWriter->save('Products.xls');
Saludos y espero volver mas seguido... hace rato no ingresaba