Is this com function only capable of opening an instance of the application on the server. I want to be able to open excel on the client pc. Thanks in advance. i have a code like this which works on local like localhosts/cms but not in www.cms.np.
my code is
$objApp = new COM("Outlook.Application") or die("Couldnot instatntiij");
$myItem = $objApp->CreateItem(0);
$myItem->To='recip@ient.com';
$myItem->SentOnBehalfOfName = 'from@address.com';
$myItem->Subject="This is a test";
$myItem->Body="This is a Body Section now.....!";
$myItem->Display();