16 lines
241 B
PHP
16 lines
241 B
PHP
<?php
|
|
ini_set('display_errors', 1);
|
|
error_reporting(E_ALL);
|
|
?>
|
|
|
|
<?php include 'header.php'; ?>
|
|
|
|
<img src="assets/images/logo.png"
|
|
alt="Geizkragen Logo"
|
|
width="40"
|
|
height="40">
|
|
|
|
|
|
|
|
|
|
<?php include 'footer.php'; ?>
|