Update about.php
This commit is contained in:
parent
fdf24cd200
commit
332c693a32
29
about.php
29
about.php
|
|
@ -1,4 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
require_once("core/config.php");
|
session_start();
|
||||||
echo "maintainers ";
|
|
||||||
print_r($maintainers);
|
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>
|
||||||
|
|
||||||
Loading…
Reference in New Issue