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.
include('templates/index.tpl');
<?php //index.php
include('mein/template.tpl');
?>
<?php // template.tpl
include('andere/datei.bla');
?>
<?php // datei.bla
// hier kannst auch php code reinschreiben ^^
?>
<?php // overall_header.tpl
include('../head_forum.php');
?>
<?php // overall_footer.tpl
include('../footer_forum.php');
?>