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.
// Grose Bilder anzeigen
if(isset($_GET['section']) AND $_GET['section'] == 'detail')
{
$album = $_GET['action'];
if(isset($_GET['seite'])){
$bild = $_GET['seite'];
}
else{
$bild = 1;
}
// Zum nächten Bild wechseln
$handle = opendir("gallery/$album/");
while (false !== ($file_bild = readdir($handle))) {
$pics[] = $file_bild;
}
$seite_bild = $_GET['id'];
$id = intval($_GET['seite']);
$next = $id + 1;
echo "<pre>";
echo "<img src='./gallery/$album/".$pics[$id]."' alt=''/>";
echo "</pre><br/>";
echo '<a href="bildergallery-detail-'.$album.'-'.$seite_bild.'-'.$next.'.html">Zum nächten Bild</a><br>';
<?php
$album = "images";
$handle = opendir("./".$album."/");
while (false !== ($file_bild = readdir($handle))) {
if($file_bild != '.' AND $file_bild != '..' AND getimagesize("./".$album."/".$file_bild) == true) {
$pics[] = $file_bild;
}
}
$seite_bild = $_GET['id'];
$id = (isset($_GET['id']) ? intval($_GET['id']) : '0');
$next = $id + 1;
echo "<pre>";
echo "<img src='./".$album."/".$pics[$id]."' alt=''/>";
echo "</pre><br/>";
echo (array_key_exists($next, $pics) ? '<a href="./test.php?id='.$next.'">Zum nächsten Bild</a><br>' : '');
?>