I am trying to use the com funtions, but it give me an error :
Fatal error: Call to undefined function: com_load() in C:\Inetpub\wwwroot\MNI\index.php on line 5
Can anyone help me. And thank you
What is the code you are using that is generating the error?
Most of the docs on comobjects are flat out wrong. Dont use com_load. To instantiate a comobject do the following
$cart = new Com("shopcart.cart1") or die("Can not start com object");
Then call methods of the object by:
$cart->createCart()