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. Quote 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'); ?> Quote 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... Quote 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 Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/71030-question/#findComment-357146 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.