You can issue commands using the PHP system() function. Examples: WARNING!! When allowing user-supplied data to be passed use escapeshellarg() or escapeshellcmd() to ensure that users cannot trick the system into executing arbitrary commands. system() Also echo’s the output of the command to the web page shell_exec() Does not echo the output of the command and returns you […]
