About this user

Maurus

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

Simple Image Rotation

// Script for Simple Image (Head) Rotation

//Add before <html> tags
//Script
if ($_COOKIE['head'] != "") {
$ausgabe = $_COOKIE['head'];
}
else {
$bilder = array("bild1", "bild2", "bild3");
$ausgabe = $bilder[rand(0,2)];
setcookie ("head", $ausgabe, time()+1000);
}


//Output
$sufix = ".jpg";
$dir = "http://localhost/weblog/covers/";
if (isset($_COOKIE[head])) {
echo ''.$dir.$ausgabe.$sufix.'" alt="Cover" />';
}
else {
echo '';
}
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed