adam291086 Posted September 28, 2007 Share Posted September 28, 2007 I am wanting to make a site that calls upon a word document. It then takes the text from that document and displays it on the site in a specific location. Is this possible with php. Can anyone point me in the right direction. Link to comment https://forums.phpfreaks.com/topic/71030-question/ Share on other sites More sharing options...
MadTechie Posted September 28, 2007 Share Posted September 28, 2007 Basically you need to either work with a COM or write a MSWord Parser COM INFO <?php set_time_limit(0); error_reporting(E_ALL); $word = new COM('word.application') or die('Unable to load Word'); $word->Documents->Open('worddoc.doc'); ?> Link to comment https://forums.phpfreaks.com/topic/71030-question/#findComment-357142 Share on other sites More sharing options...
rarebit Posted September 28, 2007 Share Posted September 28, 2007 I believe someone else posted a similar question a few day's ago, they'd already done some of it, so have a search for that... Link to comment https://forums.phpfreaks.com/topic/71030-question/#findComment-357143 Share on other sites More sharing options...
adam291086 Posted September 28, 2007 Author Share Posted September 28, 2007 Cheers guys Link to comment https://forums.phpfreaks.com/topic/71030-question/#findComment-357145 Share on other sites More sharing options...
rarebit Posted September 28, 2007 Share Posted September 28, 2007 MadTechie's answers better though,,, http://uk3.php.net/manual/en/ref.com.php Link to comment https://forums.phpfreaks.com/topic/71030-question/#findComment-357146 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.