I have a line of VB code here that I need to write the equivalent in PHP:

objSession.Logon ProfileName:=pName

I tried:
$objSession->Logon->ProfileName("pName");
$objSession->Logon(ProfileName:=pName);
$objSession->Logon("ProfileName:=pName");
$objSession->Logon("ProfileName:='pName' ");

All generate errors.  I'm so close but I need to be able to switch
profiles dynamically so this is vital.

Any ideas?  suggestions?

Thanks,
Ron

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to