Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 08-17-2006, 05:40 PM Randome Image
Average Talker

Posts: 21
Trades: 0
Hello,
I want to display randome image on my index page, is there any script can display randome image??

Thanks
__________________
Can you bet!
Please login or register to view this content. Registration is FREE
ottodo is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-17-2006, 07:10 PM Re: Randome Image
Coulix's Avatar
Average Talker

Posts: 16
Trades: 0
A basic way to do it.

Your image collection:
image1.jpg
image2.jpg
image3.jpg

Your index.php or whatever containing:
Code:
 <?
$random_image_value = rand(1,3);
echo "background-image: url('image". $random_image_value .".jpg');";
?>
Adjust to your needs ofc.
Working example
View source to see full code, just in case, here it is:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Change bg link</title>
<style type="text/css">
body {

<?
$random_image_value = rand(1,3);
echo "background-image: url('image". $random_image_value .".jpg');";
?>

}
</style>
<head>
<body>
When you reload this page, a random image between 1-3 should pop..
</body>
</html>
__________________
NorthCube, Webtechnology from the north.

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
.
To avoid criticism do nothing, say nothing, be nothing. - Elbert Hubbard, 1856 - 1915.
Coulix is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Randome Image
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

BB 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.26472 seconds with 12 queries