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.
<img src="http://www.team-bountyhunters.de/test/zufallsbanner.jpg" width="283" height="212" border="0" alt="">
<?php
Header("Content-type: image/jpg");
$image = ImageCreateFromJPEG("test.jpg");
ImageJPEG($image);
imagedestroy($image);
?>
AddType application/x-httpd-php .jpg
<?php
//Mein alter Ciode
$banner = file("fertig.txt"); // Pfad der Datei angeben
mt_srand((double)microtime()*1000000);
$zufallszahl = mt_rand(0,count($banner)-1);
echo "$banner[$zufallszahl]";
//Part von ivegotmail
Header("Content-type: image/jpg");
$image = ImageCreateFromJPEG("$banner[$zufallszahl]");
ImageJPEG($image);
imagedestroy($image);
?>
<html>
<img src="http://www.team-bountyhunters.de/test/zufallsbanner.php">
</html>
mfg. Flou