Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
if( !empty( $_GET[ id ] ) && empty( $_GET[ section ] ) )
{
if( !file_exists( $_GET[ id ] .'.php' ) )
die( '<b>Error</b><br>Diese Datei konnte nicht gefunden werden!');
include( $_GET[ id ] .'.php' );
}
elseif( !empty( $_GET[ id ] ) && !empty( $_GET[ section ] ) )
{
if( !file_exists( $_GET[ id ] .'/'. $_GET[ section ] .'.php' ) )
die( '<b>Error</b><br>Diese Datei konnte nicht gefunden werden!');
include( $_GET[ id ] .'/'. $_GET[ section ] .'.php' );
}
else
{
die( '<b>Error</b><br>Diese Datei konnte nicht gefunden werden!' );
}
?>
<?php
$filepath = 'error';
if( !empty($_GET['id']) ) {
$filepath = basename($_GET['id']);
}
if( !empty($_GET['section']) ) {
$filepath .= '/'.basename($_GET['section']);
}
if( !file_exists($filepath.'.php') ) {
$filepath = 'error';
}
if( $filepath = 'error' ) {
header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found', true);
}
include($filepath.'.php');
?>
<?php
if(isset($_GET['id']) || isset($_GET['id']) && isset($_GET['section'])){
$filepath = 'error';
if( !empty($_GET['id']) ) {
$filepath = basename($_GET['id']);
}
if( !empty($_GET['section']) ) {
$filepath .= '/'.basename($_GET['section']);
}
if( !file_exists($filepath.'.php') ) {
$filepath = 'error';
}
if( $filepath = 'error' ) {
header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found', true);
}
include($filepath.'.php');
}
?>
<?php
if(isset($_GET['section']) || isset($_GET['section']) && isset($_GET['id'])){
$filepath = 'error';
if( !empty($_GET['section']) ) {
$filepath = basename($_GET['section']);
}
if( !empty($_GET['id']) ) {
$filepath .= '/'.basename($_GET['id']);
}
if( !file_exists($filepath.'.php') ) {
$filepath = 'error';
}
if( $filepath = 'error' ) {
header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found', true);
}
include($filepath.'.php');
}
?>