> You are right about it - RTF is doable, I heard.
> 
> But, I still have to answer about the MS Word thingie.
> 
> Isn't there any tool to convert from, say, PDF to Word? Or like
> headers tricky?

I use this function to send a Word header instead of an HTML header. You
can then send just regular HTML and the user can choose to open or save
the "document"

##############################################
#
# creates headers to send ms word file
#
##############################################
function com_wordheader($filename = "download")
{
    //ms word headers
    header("Content-Type: application/vnd.ms-word; name='word'");
    header("Content-Disposition: attachment; filename=" . $filename .
".doc");
}

---John Holmes...



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to