
03-18-2001, 12:37 PM
|
|
Registered User
|
 |
Join Date: Mar 2001
Posts: 1,408
|
|
|
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";
}
?> |
|
|
|