Author Topic: How do I convert .doc to .html with PHP  (Read 383 times)

0 Members and 1 Guest are viewing this topic.

Offline BrotherLogicTopic starter

  • Irregular
  • Posts: 22
    • View Profile
How do I convert .doc to .html with PHP
« on: August 26, 2006, 10:54:25 PM »
I need to know if this is possible.
I am looking to convert MS Office files to .html with PHP...


Thanks guys.

Offline onlyican

  • Devotee
  • Posts: 887
  • Gender: Male
  • British bullDog
    • View Profile
    • ClubFeet.net
Re: How do I convert .doc to .html with PHP
« Reply #1 on: August 27, 2006, 09:02:57 AM »
This is not very easy, you cant just convert .doc to .html, as they are encoded differently

The only way I can think of, not sure if it would work
useing fopen(), fread(), fclose() functions
OPen the file
Get all the text to a variable
then create a new file (with the same functions)
and add the text in there.

As I said, I am not sure if this would grab the text, or the encoded rubbish as well.
Tell me the problem, I will try tell you the solution