hi evry body(i need expord doc with html)
-
hi please help me ; i have html page and i need export doc with this
-
hi please help me ; i have html page and i need export doc with this
It sound like you want to use php to convert an html page to a microsoft word file (aka *.doc). Never done that myself, but a *.doc is just a file type and so if you read up on how the file is structured you can write code to do this. First though, you need to understand the file structure. You can google for this information as there are many people that have asked this same question. Here is one link that I found with a simple google search. http://blogs.technet.com/b/srd/archive/2008/07/18/how-to-parse-doc-file-format.aspx[^] Good Hunting!
Chris J www.redash.org
-
It sound like you want to use php to convert an html page to a microsoft word file (aka *.doc). Never done that myself, but a *.doc is just a file type and so if you read up on how the file is structured you can write code to do this. First though, you need to understand the file structure. You can google for this information as there are many people that have asked this same question. Here is one link that I found with a simple google search. http://blogs.technet.com/b/srd/archive/2008/07/18/how-to-parse-doc-file-format.aspx[^] Good Hunting!
Chris J www.redash.org
Adding with you: The op will have to do two parsing: 1. Compound Document format. This is described well in OpenOffice. 2. how to read data from the stream read from compound file. Its also available in OpenOffice.org Actually file like excel, doc are written in compound document format. The format specification is open.
I know I am coward since the day I know that fortune favors the brave
-
hi please help me ; i have html page and i need export doc with this
You should look into headless openoffice
-
Adding with you: The op will have to do two parsing: 1. Compound Document format. This is described well in OpenOffice. 2. how to read data from the stream read from compound file. Its also available in OpenOffice.org Actually file like excel, doc are written in compound document format. The format specification is open.
I know I am coward since the day I know that fortune favors the brave
thanks for replying