Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions

15
session.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
session_start();
function Message(){
if(isset($_SESSION["message"])){
$output="<div class=\"message\">";
$output .= htmlentities($_SESSION['message']);
$output .="</div>";
$_SESSION['message']=null;
return $output;
}
}
?>