tags:

views:

17

answers:

1

I am not sure is it possible or not.I dont have any Idea on this.I am using one SDK with for the scanner scanning the document and getting the values.Now I want to access the SDK from my website to the local system.For that I want to read the ActiveX control using PHP?Is it possible to read the ActiveX control from PHP?Or do you have any idea on this please suggest me.Thanks in advance.

A: 

See the PHP faq here : PHP can be used to access COM and DCOM objects on Win32 platforms.

<?php
$word = new COM("C:\docs\word.doc");
?>
Preet Sangha