Reply
random image script
Old 01-29-2005, 10:54 AM random image script
Skilled Talker

Posts: 58
Hi,

I am looking for a Free, and ad/link-free, random image script to use on one of my sites.

Basically, i want it so that there is a 750 x 100px image on the main site, when i hit refresh in the browser, i want it to change so that another image displayes in its place

I want to chose which images are used, but not the order they appear in.

How can i do this?

Thanks,

KGB
__________________
San Andreas (UK)
KGB-911 is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
     
Old 01-29-2005, 11:14 AM
Skilled Talker

Posts: 58
dosent matter guys, i found one
__________________
San Andreas (UK)
KGB-911 is offline
Reply With Quote
View Public Profile
 
Old 01-29-2005, 11:17 AM
Average Talker

Posts: 17
I'm going to assume that the images you want to display are in a folder called "randimages" but you can change this. Also, the images must be numbered consecutively(ie- img1.jpg, img2.jpg and so on)

PHP Code:
// folder the images are in
// you can change this
$folder "randimages";
// number of images files you have
$num_images 10;
srand(date("s"));

// make sure the file exists
do
{
     
$img "/".$folder."/img".rand(1,$num_images).".jpg";
}while(!
is_file($img));

echo 
"<img src=\"$img\" alt=\"random image\">"
Let me know if there are any problems. There is another way you can do it you don't want to name the files "img1.jpg". If you want to keep the original file names, I'll have to redo it.
bizpile is offline
Reply With Quote
View Public Profile Visit bizpile's homepage!
 
Old 01-29-2005, 12:31 PM
Skilled Talker

Posts: 58
like i said, i have found away, but thanks anyway

I am sing a program that lets you choose how many times one image will appear in a day
__________________
San Andreas (UK)
KGB-911 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to random image script
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.12407 seconds with 13 queries