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['section']))
{
$section=$_GET['section'];
if ((strpos($section,"index")>-1) || (strpos($section,"http:")>-1) || (strpos($section,"https:")>-1) || (strpos($section,"ftp:")>-1))
{
header("Location:index.php");
}
else
{
include('inc/'.$section.".php");
}
}
else
{
include("inc/home.php");
}
?>
<?php
$entries=array('home','news','impressum','contact');
if (isset($_GET['section']))
{
$section=$_GET['section'];
}
else
{
$section='home';
}
$styles=array();
for ($x=0;$x<count($entries);$x++)
{
if ($entries[$x]==$section)
{
$styles[$entries[$x]]='current';
}
else
{
$styles[$entries[$x]]='normal';
}
}
?>
<ul id="nav">
<li><a href="index.php?section=home" class="<?php echo $styles['home']; ?>">Home</a></li>
<li><a href="index.php?section=news" class="<?php echo $styles['news']; ?>">News</a></li>
<li><a href="index.php?section=impressum" class="<?php echo $styles['impressum']; ?>">Impressum</a></li>
<li><a href="index.php?section=contact" class="<?php echo $styles['contact']; ?>">Contact</a></li>
</ul>
ul#nav li a.normal { ... }
ul#nav li a.normal:hover, ul#nav li a.current { ... }