Large commit, multiple projects/labs

This commit is contained in:
2026-04-13 16:19:41 -04:00
parent 942da76704
commit e2aa277aaf
1261 changed files with 180663 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php define("TITLE", "The Best Pizza Menu in The World"); ?>
<?php session_start(); ?>
<?php include("template/header.php"); ?>
<?php date_default_timezone_set("America/Toronto"); ?>
<?php
echo "Hello, " . $_SESSION['email'];
echo "<br>";
echo "You logged in at: " . date("l F j, Y, g:i A", $_SESSION['loggedin']);
echo "<br>";
?>
<a href="logout.php">Logout</a>
<?php include("template/footer.php"); ?>