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.
nochmal verständlich bitte ?
im ersten moment würde ich sagen error by design, ich würde gerne mal die switch anweisung von heise sehen.
//Allgemeines Menü
switch($_GET['action']){
case 'news': include ('news/index.php'); break;
case 'regel': include ('src/regeln/index.php'); break;
case 'teams': include ('src/verein/Mannschaften.php'); break;
case 'member': include ('src/verein/Personen.php'); break;
case 'training': include ('src/verein/training.php'); break;
case 'history': include ('src/verein/Vereinsgeschichte.php'); break;
case 'sponsoren': include ('src/verein/Sponsoren.php'); break;
case 'status': include ('src/hp/status_show.php'); break;
case 'gbook': include ('book/index.php'); break;
case 'impressum': include ('src/verein/Impressum.php'); break;
case 'faq': include ('src/hp/faq_show.php'); break;
case 'login': include ('src/intern/index.html'); break;
}
$rout = array(
'name'=>'Pfad',
'...'=>'...'
);
if(in_array($_REQUEST['way'],$rout))
{
require($_REQUEST['way']);
}