Create a word document

Posted on February 14th, 2009 in PHP by admin

<?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->Documents->Add();
//add some text to the document
$word->Selection->TypeText(”this is some sample text in the document”);
//save the document as sampleword.doc
$word->Documents[1]->SaveAs(”sampleword.doc”);
//close word
$word->Quit();
//free object resources
$word->Release();
$word = null;
?>

Related posts:

  1. Create an XML file In this example we are going to create a simple...

Related posts brought to you by Yet Another Related Posts Plugin.

Post a comment