Exporting data to a doc file in php
Linux, Apache, MySQL, PHP
2
Posts
2
Posters
0
Views
1
Watching
-
hi all, Can any one tell me how can i export data to MS-Word i.e., to a .doc file or .docx file using php ? Thanks in advance.
Have a look at using word ml (word xml) format, then just push out all your data as xml text which can be read in word. (Just push it to the http stream with application/msword content type). Hope this helps, not done this in PHP but the concept remains the same