18 lines
364 B
PHP
18 lines
364 B
PHP
<?php
|
|
session_start();
|
|
include("../scripts/connection.php");
|
|
include("../scripts/functions.php");
|
|
|
|
$user_data = check_login($con);
|
|
|
|
include("header_footer/header.php");
|
|
?>
|
|
|
|
<body>
|
|
<h1><span>Punktesystem Kreispokalwettbewerb Altdorf</span></h1>
|
|
<p>test</p>
|
|
</body>
|
|
<?php
|
|
$con = null;
|
|
echo file_get_contents("header_footer/footer.html");
|
|
?>
|