mubeena Posted January 31, 2009 Share Posted January 31, 2009 hai, In desktop application, using our code we can make open , any application. Is it possible, in web application? For Example, <?php $WshShell = new COM("WScript.Shell"); $oExec = $WshShell->Run("notepad.exe", 7, false); ?> It is not opening the Notepad GUI. Link to comment https://forums.phpfreaks.com/topic/143243-how-to-open-any-application-in-web-application-program/ Share on other sites More sharing options...
premiso Posted January 31, 2009 Share Posted January 31, 2009 No, since it would open it on the server. You cannot invoke commands to run on the clients machine. That would be a massive security risk. In order to do something like that, you would need to run an ActiveX control. Link to comment https://forums.phpfreaks.com/topic/143243-how-to-open-any-application-in-web-application-program/#findComment-751299 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.