Connecting Tech Pros Worldwide Forums | Help | Site Map

Creating WORD docs in PHP

Newbie
 
Join Date: Oct 2006
Posts: 1
#1: Oct 18 '06
I have discovered how to create a Word document using the following in PHP
header("Content-Type: application/msword");
header("content-disposition: attachment;filename=invoices.htm");
How do control the document formatting? eg select the FONT that will be used, set and unset BOLD, set a page break, set TABS, insert Graphics in the document.
Thanks for all help.

Member
 
Join Date: Oct 2006
Posts: 50
#2: Oct 18 '06

re: Creating WORD docs in PHP


Look what i found with google!!!

http://www.theevilpixel.com/?q=node/37


(php - asp .. Not important in this case)
Newbie
 
Join Date: Nov 2006
Posts: 1
#3: Nov 9 '06

re: Creating WORD docs in PHP


OK, we can use HTML code to create the various pages, but what do we enter to cause a page break in the .DOC file? (Same issue if creating RTF files, I guess.)
Reply