Re: [PHP] Dynamic Document Creation

2001-12-07 Thread Robert Samuel White
Thank you, Valentin. Your solution sounds like the one I am looking for! > It's from manual do not remember it's chapter exactly: > > // starting word > $word = new COM("word.application") or die("Unable to instanciate Word"); > print "Loaded Word, version {$word->Version}\n"; > > //bring

Re: [PHP] Dynamic Document Creation

2001-12-07 Thread Miles Thompson
Wheee! Sounds like fun. If you're headed for the latest version of Word (XP), XML would be the way to go. I would expect specs available at either StarOffice (Open Office) or MSFT. There's also nice formatting with HTML. Miles Thompson At 12:43 PM 12/7/2001 -0500, [ rswfire ] wrote: >Hello,

Re: [PHP] Dynamic Document Creation

2001-12-07 Thread Robert Samuel White
These forms are for offline distributionthe information in the form is collected from an online database... > On Friday 07 December 2001 09:43 am, you wrote: > > Does anyone have any scripts or know a location to point me to where I can > > dynamically create Microsoft Word documents using

Re: [PHP] Dynamic Document Creation

2001-12-07 Thread Kurt Lieber
On Friday 07 December 2001 09:43 am, you wrote: > Does anyone have any scripts or know a location to point me to where I can > dynamically create Microsoft Word documents using PHP. You said you wanted to create some nicely formatted forms -- what's wrong with HTML and style sheets? Assuming

Re: [PHP] Dynamic Document Creation

2001-12-07 Thread Valentin V. Petruchek
It's from manual do not remember it's chapter exactly: // starting word $word = new COM("word.application") or die("Unable to instanciate Word"); print "Loaded Word, version {$word->Version}\n"; //bring it to front $word->Visible = 1; //open an empty document $word->Documents->Add(); //do some