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.
<?PHP
 
// dein ordner wo die bilder drinne sind
$ordner = 'deinordner/';
 
// bilder definieren
$bild[1] = 'deinnamevombild.jpg';
$bild[2] = 'deinnamevombild.jpg';
$bild[3] = 'deinnamevombild.jpg';
$bild[4] = 'deinnamevombild.jpg';
 
// bilder zählen
$count_pictures = count($bild);
 
// zufallsbild ausgeben
echo '<img src='.$ordner.rand(1,$count_pictures).' width="45" height="45" alt="lala" >';
 
?>