Page Number: Page 1 of 1
Actual Results
- gregcaulder
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP Create Word Document
- Subject: PHP Create Word Document
- Replies: 22
- Views: 37398
- Subject: PHP Create Word Document
Posted: March 26th, 2007, 2:22 am
I have gotten my code above to work correctly. No problems their anymore. What i am having a problem with is being able to insert an image from a URL into the file itself. how would i go about doing that?
Greg
Greg
- gregcaulder
- Forum: Programming / Scripting / Coding Forum
- Topic: Problem with PHP Create Word Document getting error
- Subject: Problem with PHP Create Word Document getting error
- Replies: 8
- Views: 3781
Posted: March 23rd, 2007, 10:14 pm
hi m posting d code! $word = new COM("word.application") or die("Unable to instantiate Word"); //2. specify the MS Word template document (with Bookmark TODAYDATE inside) $template_file = "..//avinash/name.doc"; //3. open the template document $word->Documents->O...
- gregcaulder
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP Create Word Document
- Subject: PHP Create Word Document
- Replies: 22
- Views: 37398
- Subject: PHP Create Word Document
Posted: March 23rd, 2007, 9:43 pm
I have PHP create excel file like this: <?php $word = new COM("word.application") or die ("couldnt create an instance of word"); echo "loaded , word version{$word->version}"; //bring word to the front $word->visible = 1; //open a word document $word->Docume...

