this class can be used to edit Microsoft Word documents using COM objects.
http://www.phpclasses.org/
Details about editing word documents http://www.webmasterworld.
Try this, Good Luck
HTH,
~PG
Main Topics
Browse All TopicsHi experts,
I am developing a website there i need to upload and edit word doc file. I have got uploading code. But i am strucked in editing doc file . How can i edit doc file using php. Please help me thanks in advance.
Regards,
vimal.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
this class can be used to edit Microsoft Word documents using COM objects.
http://www.phpclasses.org/
Details about editing word documents http://www.webmasterworld.
Try this, Good Luck
HTH,
~PG
Business Accounts
Answer for Membership
by: shobinsunPosted on 2009-11-03 at 22:04:31ID: 25736789
Hi,
.co.uk/php createword .php
Here is the simplest method to write to a word file:
[php]<?
$fp = fopen("amit.doc", 'w+');
$str = "<B>This is the text for the word file created through php programming</B>";
fwrite($fp, $str);
fclose($fp);
?>[/php]
if the above code is not enough then go to
http://www.programmershelp