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.
... find die Funktion net wo man ein Bild in ein anderes einfügen kann.
function showPictures($directory)
{
if(is_dir($directory))
{
if(opendir($directory))
{
echo "<hr/>";
//$count = 0;
foreach(glob($directory.'/*.*') as $string)
{
$aus = '<A HREF="'.$string.'"><IMG SRC="'.$string.'" WIDTH=160 HEIGHT=100></A>'."\n";
echo $aus;
}
echo "<hr/>";
}
}
}