Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 3 users online
 o Most users online: 67
 o Home
  o Perl
   o Random
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o devnet
 o Open Source Design
 o Wedding Vendor Directory
 o OxyScripts
 o designplace
 o Free Wedding Websites

Random Image Loader (Rated 0)

Description:

You can use this script to load up a different image each time the page is loaded. Useful for people who don't have PHP enabled webspace.

Remember to chmod 755 the cgi file when uploaded.
Call the file random.cgi

Code starts here


#!/usr/local/bin/perl

$imagedir = 'http://www.domain.com/images/';
@arrimages = ("image1.gif", "image2.gif", "image3.gif");

$seedno = $#arrimages + 1;
srand(time ^ $$);
$imageid = rand($seedno);
print qq(Location: $imagedir$arrimages[$imageid]\n\n);
return;


Submitted by Devscripts on 17-02-2003 21:19


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net