I am really going crazy here, so I'd appreciate your help! I am trying to use this COM-object. Everything works just fine in ASP on the same machine, now I try to do the same with PHP.
Working ASP (VBScript) example:
customobject.GstName(guestsessionid) = Request("gstname")
NOT working in PHP:
$customobject->GstName($guestsessionid)->value = $gstname;
or
$customobject->GstName($guestsessionid) = $gstname;
or
$customobject->GstName($guestsessionid)->$gstname;
However, this works for retrieving the value:
$gstname = $customobject->GstName($guestsessionid);
Can anyone tell me what I am missing? Thanks!