you should be able to ... in word ... open up the html page from word itself, and then save it as a word doc... thinking in my head, soemthing along the lines of... $file="bios.html" $word=new COM("Word.Application") or die("Cannot start word for you"); $word->visible =0 ; $word->Documents->Open($file); $word->Documents[1]->SaveAs("testwrite.doc"); $word->Quit(); in theory, should work... although i could be wrong... -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php