Files
PunkteSystem-KSP/app/public/index.php
2022-06-19 15:05:47 +02:00

30 lines
693 B
PHP

<?php
session_start();
include("../scripts/connection.php");
include("../scripts/functions.php");
$user_data = check_login($con);
include("header_footer/header.php");
?>
<body>
<div class="center">
<div class="headline">
<h1><span>Punktesystem Kreispokalwettbewerb Altdorf</span></h1>
</div>
<div class="home">
<h2>Gesamtergebniss</h2>
</div>
<div class="home-menu-table table-div">
<table id="table">
<?php load_total_score($con); ?>
</table>
</div>
</div>
</body>
<?php
$con = null;
echo file_get_contents("header_footer/footer.html");
?>