画像が html に表示されるのと同じように、ms word ドキュメントを Web ブラウザに表示するにはどうすればよいですか。私はphpとhtmlを使用しています.iframeを使用して試しましたが、私の考えはうまくいきませんでした.
<iframe name="houses" src="report.doc" width="580"></iframe>
これを試して :
<?php
$word = new COM("word.application") or die ("Could not initialise MS Word object.");
$word->Documents->Open(realpath("Sample.doc"));
// Extract content.
$content = (string) $word->ActiveDocument->Content;
echo $content;
$word->ActiveDocument->Close(false);
$word->Quit();
$word = null;
unset($word);
?>
詳細については、 これを参照してください
Google ドキュメントを使用できます。
<iframe src="http://docs.google.com/gview?url=http://www.example.com/report.doc"></iframe>