testing service_controls

This commit is contained in:
mcguirepr89
2022-02-16 08:02:48 -05:00
parent 7444f06349
commit ee252f118b
+2 -2
View File
@@ -88,8 +88,8 @@ error_reporting(E_ALL);
if(isset($_POST['submit'])){
$command = $_POST['submit'];
echo "<h3>Executed $command</h3>";
shell_exec("$command");
$results = shell_exec("$command");
echo "$results";
}
?>
</div>