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'])){ if(isset($_POST['submit'])){
$command = $_POST['submit']; $command = $_POST['submit'];
echo "<h3>Executed $command</h3>"; $results = shell_exec("$command");
shell_exec("$command"); echo "$results";
} }
?> ?>
</div> </div>