A
Anonymous
Guest
i need to open word docs using php. i can get the content of the file using
$filename = "test.doc";
$bytes = readfile($filename)
the above just delivers one long unformatted string and i need to display the file with the same formatting as the word document.
$filename = "test.doc";
$bytes = readfile($filename)
the above just delivers one long unformatted string and i need to display the file with the same formatting as the word document.