Recently I have passed one issue on wamp server..I need to use the shell_exec() function in PHP for running some external shell script (some checksum file) . Bu
shell_exec()
have you tried backticks? (in case safemode is OFF)
`ls -hal`
Windows equivalent would be
`dir \AH`