Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > PHP How-To
|
PHP How-To Post your "How do I do this with PHP?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the PHP How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 22nd, 2004, 08:02 AM
Registered User
 
Join Date: Oct 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default read content of MS Word file using PHP

Hi All,
    I would like to read the content of the MS Word File using PHP.

<?php
// 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 weird stuff
$word->Selection->TypeText("This is a test...");
$word->Documents[1]->SaveAs("Useless test.doc");

//closing word
$word->Quit();

//free the object
$word->Release();
$word = null;
?>

Above code is not working its giving following warning !

Warning: (null)(): Unable to obtain IDispatch interface for CLSID {000209FF-0000-0000-C000-000000000046}: Call was rejected by callee

Regards
gokul






Similar Threads
Thread Thread Starter Forum Replies Last Post
How to read MS Word content from Classic ASP AcidBurn Classic ASP Professional 1 May 25th, 2007 06:51 AM
How to read MS Word content from Classic ASP AcidBurn Classic ASP Components 1 May 25th, 2007 06:51 AM
Read XML file into a MS Word Template avivit XSLT 1 November 2nd, 2005 03:35 AM
Read XML file into a MS Word Template avivit XML 0 October 29th, 2005 09:15 AM
read content of MS Word file using PHP gokulnathan Pro PHP 0 November 25th, 2004 01:07 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.