You can make use of shell_exec() to run shell command in PHP.
shell_exec.php
<?php
$output = shell_exec("whoami");
echo $output;
?>
Done =)
You can make use of shell_exec() to run shell command in PHP.
shell_exec.php
<?php
$output = shell_exec("whoami");
echo $output;
?>
Done =)