convert html + css to rtf or word?

Indi A

New member
Hi all, I have a problem at the moment. I want to convert a html (with some images and css) to rtf or word doc. I'm using LAMP, linux apache mysql and php. And tried to use php headers and it worked to convert the html to word doc:

header( 'Pragma: public' );
header( 'Content-Type: application/msword' );
header( 'Content-Disposition: attachment; filename="filename.doc"' );

but it did not include the images and css (the layout format was terrible). Anyone can help me to solve this conversion thing please? Thank you.
 
Back
Top