<?php 
session_start();
//$my_dll = new COM('C:/Windows/SysWOW64/BemaFI32.dll');

try {
$obj = new COM("BemaFI32") or die ( "Unable to instantiate the COM!");
 
} catch (Exception $e) {
    echo 'Caught exception: ',  $e->getMessage(), "\n";
}


?>