08-18-2008, 04:14 PM
|
#1 (permalink)
|
|
The Visitor
Join Date: Aug 2008
Posts: 3
Thanks: 0
|
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(0, 19);
header('Location: ' . $avatars_folder . $rand_int . $frmt);
?>
Each time a different avatar will be displayed (my signature is an example).
Have fun:)
__________________
|
|
|