hallo,
i want to put the .exe file into the php. can anybody explain and show the example on which technology can i use to solve this problem?
exec
i already try to use exec, but only notepad.exe can display. not for .exe file. dont know why.....
What kind of do you want to run, and where do you want to run it?
The only way to execute an .exe is with exec();, shell_exex(); These funtion execute the program on the server, not on the client.
ok let me explain in more detail...
i was developed one ".exe" file using vb.net, and need to put it inside web application developed using PHP. My application and that web has to be run tgether on client pc. if i use exec, it only can run on server. so how can i do it?
Originally posted by sbabg if i use exec, it only can run on server.
That could be because PHP only runs on the server.
You'll be wanting some sort of client-side programming to do what you want. Probably involving something specific to Internet Explorer most likely. msdn.microsoft.com might have something relevent in that case.
The only way to get an executable to run on the client machine is to have them download it and run it. Otherwise it would be a HUGE security issue.