By using the script below i am able to convert MS words documents to txt so as to insert it into mysql databse.
<?php
$word = new COM("word.application") or die ("Could not initialise MS Word object.");
$word->Documents->Open(realpath("file.doc"));
// Extract content.
$content = (string)...