View Single Post
Old 08-18-2008, 03:14 PM   #1 (permalink)
FaceDancer
The Visitor
 
Join Date: Aug 2008
Posts: 3
Thanks: 0
FaceDancer is on a distinguished road
Big Grin Random Avatar Script

Hail, everyone. It's quite a primitive script for "facedancing" on forums or elsewhere:)

For this script you need several images of same format and size (it is better when they have same size), a directory to host them and the file with the script, duh:P

For this very script the images must have names 0, 1, 2, etc.

PHP Code:
<?php 

$avatars_folder 
"./avatars/";

$frmt ".jpg"

srand(time(0)); 

$rand_int rand(019); 

header('Location: ' $avatars_folder $rand_int $frmt); 

?>
Each time a different avatar will be displayed (my signature is an example).

Have fun:)
__________________
Send a message via ICQ to FaceDancer
FaceDancer is offline  
Reply With Quote