6
votes
Create Word Document using PHP in Linux
Add header and output HTML as you usually do.
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=document_name.doc");
echo "<html …
3
votes
Reading/Writing a MS Word file in PHP
Most probably you won't be able to read Word documents without COM.
Writing was covered in this t …
