Can anyone help me out on this ??
How can i open windows command prompt from a web-page that runs with php script??
php doubt
Moderator: General Moderators
Re: php doubt
You can't. No web-based will do that.
Re: php doubt
You can run commands on the server with program execution functions, but the browser does not allow that kind of access to the client machine. Even if it did, anything happening on the client is beyond the scope of PHP running on the server.
Re: php doubt
If you want to open a command prompt on the client side, it is impossible without any .NET or other implementations.tempuser wrote:Can anyone help me out on this ??
How can i open windows command prompt from a web-page that runs with php script??
However, if you want to open up a command prompt on the _server side_ you could do that with system(), php.net/system.
/beetree