gymrooster_php/html/index.php

10 lines
198 B
PHP
Raw Normal View History

2020-03-05 23:06:59 +01:00
<?php
ob_start();
echo $_SERVER['REQUEST_URI'];
include __DIR__ . '/../templates/index.html.php';
$output = ob_get_clean();
include __DIR__ . '/../templates/layout.html.php';