Finished Cloud Apache Container

This commit is contained in:
2023-04-05 07:53:20 -07:00
parent 65f98084d6
commit 95b9397067
14 changed files with 1778 additions and 7 deletions

13
configs/phpinfo.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
session_start();
echo shell_exec("whoami");
if ( !isset($_SESSION["number"]) ) {
$_SESSION["number"] = 1;
echo "New Session";
echo $_SESSION["number"];
}else {
$_SESSION["number"] = $_SESSION["number"] + 1;
echo $_SESSION["number"];
}
phpinfo();
?>