Thanks for the info mark, i used this coding in my php file just to open a word document:
$word=new COM("word.application") or die("Cannot start MS Word");
print "Loaded word version ($word->Version)\n";
$word->visible = 1 ;
$word->Documents->Add();
$word->Selection->Typetext("This is a test");
and i get this error
Cannot instantiate non-existent class: com in /usr/local/www/......word2.php on line 6
Thanks for any help