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.
Ausserdem steht ja "kontakt.php" Wieso dann angezeigt wird, dass
"Kontakt.php" nicht gefunden wurde, gibt mir ein Rätsel auf...
http://www.arudc.ch/index.php?section=Kontakt
$section = $_GET[section];
$datei = "include/$section.php";
if (file_exists($datei))
{
include "$datei";
}
else
{
echo "Datei nicht gefunden";
}
<?php
if ($_GET[section])
{
$section = $_GET[section];
$datei = "include/$section.php";
if (file_exists($datei))
{
include "$datei";
}
else
{
echo "Datei nicht gefunden";
}
}
else
{
include "include/home.php";
}
if($_GET['section'] == "Home")
{ include "include/home.php"; }
if($_GET['section'] == "Neuste_Radeon_Grafikkarten")
{ include "include/neuste_radeon_grafikkartentreiber.php"; }
if($_GET['section'] == "Windows_Vista_Infos")
{ include "include/windows_vista_infos.php"; }
if($_GET['section'] == "Viren_und_Malware")
{ include "include/viren_und_malware.php"; }
if($_GET['section'] == "Musik")
{ include "include/musik.php"; }
if($_GET['section'] == "Browserdownloads")
{ include "include/browserdownloads.php"; }
if($_GET['section'] == "Remote")
{ include "include/remote.php"; }
if($_GET['section'] == "Partner")
{ include "include/partner.php"; }
if($_GET['section'] == "Kontakt")
{ include "include/kontakt.php"; }
?>