Update about.php

This commit is contained in:
nolanwhy 2023-02-05 13:15:17 +01:00
parent fdf24cd200
commit 332c693a32
1 changed files with 26 additions and 3 deletions

View File

@ -1,4 +1,27 @@
<?php
require_once("core/config.php");
echo "maintainers ";
print_r($maintainers);
session_start();
require_once 'core/classes.php';
require_once 'core/classes/user.php';
if(isset($_SESSION['user'])) {
$user = new User($con, $_SESSION['user']);
}
?>
<!DOCTYPE html>
<html data-bs-theme="dark">
<head>
<?php
$getitstarted = new PartyStarter;
$getitstarted->header();
?>
</head>
<title><?php echo $pagename; ?> | <?php echo $sitename; ?></title>
<body>
<h1>yes i am AGAIN still not hired to make html</h1>
<h1>here is all the devs</h1>
<h1><?php foreach($maintainers as $dev) {
echo $dev."<br>";
} ?>and not u cause you stink 😂😂😂😂😂😂😂😂😂😂😂😂😂
</body>
</html>