tags:

views:

48

answers:

2

How to convert html to word /excel / powerpoint with PHP ?

+1  A: 

PHP to Word:

I think the easiest way to generate DOC files with PHP is using the Zend Framework component phpLiveDocx. You can load Word or Open Office templates, merge textual data and save the final document to a number of formats, such as DOC, DOCX, RTF and PDF.

shamittomar
+3  A: 

Try the following PHP classes:

I only used PHPExcel so far but it worked great and is easy to learn. Since all classes are from the same company I assume that they should fit your needs as well.

Nick
Just as a point of note, we're not a company, we're simply a disparate group of FOSS developers scattered around the world; but yes, the three projects are all related.
Mark Baker