Whats the available solutions for PHP to create word document in linux environment?
|
|
Add header and output HTML as you usually do.
Make sure you don't use external stylesheets. Everything should be in the same file. If you need to produce "real" Word documents you need a Windows-based web server and COM automation. I highly recommend Joel's article on this subject. |
||||
|
|
|
OpenOffice templates + OOo command line interface.
There are tools and libraries available to ease each of those steps. May be that helps. |
||
|
|
|
|
The Apache project has a library called POI which can be used to generate MS Office files. It is a Java library but the advantage is that it can run on Linux with no trouble. This library has its limitations but it may do the job for you, and it's probably simpler to use than trying to run Word. Another option would be OpenOffice but I can't exactly recommend it since I've never used it. |
||
|
|
|
|
If you really need to create a Word document, then your best bet is probably to use COM to generate the Word document through Microsoft Word. See http://www.programmershelp.co.uk/phpcreateword.php and http://drewd.com/2007/01/25/reading-from-a-word-document-with-com-in-php for some examples. Otherwise my advice would be to use RTF or HTML documents - see http://conort.googlepages.com/generate-word-from-php and and http://paggard.com/projects/rtf.generator/ for example. |
||
|
|
|
|
By far the easiest way to create DOC files on Linux, using PHP is with the Zend Framework component phpLiveDocx. From the project web site: "phpLiveDocx allows developers to generate documents by combining structured data from PHP with a template, created in a word processor. The resulting document can be saved as a PDF, DOCX, DOC or RTF file. The concept is the same as with mail-merge." It is completely free to download and use. For more information, please take a look at: http://www.phplivedocx.org/articles/brief-introduction-to-phplivedocx/ |
||
|
|
|
A bit of a pickle here because you can't utilize the Also check out how the doc format works |
|||
|
|
|
|
There are 2 options to create quality word documents. Use COM to communicate with word (this requires a windows php server at least). Use openoffice and it's API to create and save documents in word format. |
||
|
|
