I have the following example:
$user = new COM('MailServerX.User') or die("Did not work"
$user->UserNames="joe";
$user->Password="secret";
$user->Release();
$user=null;
...Which does nothing more than declare an object, set some of its variables, and then release the object (this is an example for ArgoSofts Mailserver and I think the syntax is correct). It doesn't die, it just hangs (PHP produces no errors or warnings). So my question is:
Anyone with experience with objects: What is causing it to hang (and by hang I mean the browsers progress bar just sort of crawls along and it never finishes loading)?????
$user = new COM('MailServerX.User') or die("Did not work"
$user->UserNames="joe";
$user->Password="secret";
$user->Release();
$user=null;
...Which does nothing more than declare an object, set some of its variables, and then release the object (this is an example for ArgoSofts Mailserver and I think the syntax is correct). It doesn't die, it just hangs (PHP produces no errors or warnings). So my question is:
Anyone with experience with objects: What is causing it to hang (and by hang I mean the browsers progress bar just sort of crawls along and it never finishes loading)?????