TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   Script Giveaway (http://www.talkphp.com/script-giveaway/)
-   -   Random Avatar Script (http://www.talkphp.com/script-giveaway/3255-random-avatar-script.html)

FaceDancer 08-18-2008 03:14 PM

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:)

Dr_Neffy 08-22-2008 05:47 AM

oh yeah i know this smale trick
yo can also do
PHP Code:

<?php
$a 
= array("im1.jpg""im2.jpg""blabla.jpg");
srand(time(0));
$rand_int rand(0count($a)-1);
echo 
$a[$rand_int]."\n";
?>

so you don't need images with 1, 2, 3... numeration it's can be more usefull ;)


All times are GMT. The time now is 09:59 PM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0