PHP Image Rotators

Soldato
Joined
30 Apr 2007
Posts
3,095
Location
Kent
Hi Guys

I see a few guys here have PHP image rotators.

Could someone give me any hints how to make one or give me the code.

I do know PHP and have PHP Hosting.

Many Thanks.
 
Just stick this is a file called index.php

Code:
<?php

$files = glob('{*.PNG,*.png,*.JPG,*.jpg,*.GIF,*.gif}', GLOB_BRACE);
readfile($files[array_rand($files)]);

?>

Stick your images in the same folder and navigate to the index.php file and you have your image rotator :)
 
Back
Top Bottom