Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<?php
if($_GET['site'] == 'index' or empty($_GET['site']))
{
$inc = 'index';
}
elseif(file_exists('templates/' . $_GET['site'] . '.php'))
{
$inc = $_GET['site'];
}
else
{
$inc = '';
include('templates/error.php');
}
if (!empty($inc))
{
include('templates/' . $inc . '.php');
}
?>