Thread: Lycia
View Single Post
  #6  
Old 03-18-2001, 12:37 PM
vergil vergil is offline
Registered User
vergil's Avatar
Join Date: Mar 2001
Posts: 1,408
vergil will become famous soon enough
Send a message via ICQ to vergil
nai that is a random image script. Like this:

<?php
header("content-type: image/gif");
srand((double)microtime()*10000000);
$randomtopic = rand(1,5);

if ($randomtopic == "1") {
include "avatar1.gif"; }

else if ($randomtopic == "2") {
include "avatar2.gif"; }

else if ($randomtopic == "3") {
include "avatar3.gif"; }

else if ($randomtopic == "4") {
include "avatar4.gif"; }

else if ($randomtopic == "5") {
include "avatar5.gif"; }

else {
echo "Error: Not found";
}
?>
Reply With Quote