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 02-09-2006, 04:48 PM Random image link
FutileSoul's Avatar
Ultra Talker

Posts: 383
Location: Michigan
Trades: 0
Is there a way to have a random image link appear on a page?
thanks
__________________

Please login or register to view this content. Registration is FREE
- The Congregation of Man
FutileSoul is offline
Reply With Quote
View Public Profile Visit FutileSoul's homepage!
 
 
Register now for full access!
Old 02-09-2006, 06:10 PM Re: Random image link
TrentonD's Avatar
Ultra Talker

Posts: 253
Location: Calgary, Alberta, Canada
Trades: 0
Hey there fellow Digital Notion'er

I have used a code like this before on one of my websites, which displayed one of multiple images for the header. Hopefully I'm remembering this correctly

PHP Code:
<?php

$imagevar
=rand(13); // First number is minimum amount of things to be chosen from, the second is the max.  I had 3 headers, so I had a max of 3.
if($imagevar==1)
  {
    echo 
"<img src='img/header.gif'>";
  }
else if(
$imagevar==2)
  {
   echo 
"<img src='img/header2.gif'>";
  }
else if(
$imagevar==3)
   {
    echo 
"<img src='img/header3.gif'>";
   }
?>
The script is pretty self explanatory, and there may be a more practicle way of doing it, but this way should work as well. Also, the variable $imagevar can be anything you want.

Hope this helps (and works )!
__________________
Signature Coming Soon! :)
Please login or register to view this content. Registration is FREE
TrentonD is offline
Reply With Quote
View Public Profile Visit TrentonD's homepage!
 
Old 02-09-2006, 11:22 PM Re: Random image link
FutileSoul's Avatar
Ultra Talker

Posts: 383
Location: Michigan
Trades: 0
that looks like it will only display the image, not an image link
__________________

Please login or register to view this content. Registration is FREE
- The Congregation of Man
FutileSoul is offline
Reply With Quote
View Public Profile Visit FutileSoul's homepage!
 
Old 02-10-2006, 12:15 AM Re: Random image link
TrentonD's Avatar
Ultra Talker

Posts: 253
Location: Calgary, Alberta, Canada
Trades: 0
Well, you can change the stuff in the brackets to anything you want, so it could be:

PHP Code:
echo "<a href='url here'><img src='img/header3.gif'></a>"
or whatever you want.
__________________
Signature Coming Soon! :)
Please login or register to view this content. Registration is FREE
TrentonD is offline
Reply With Quote
View Public Profile Visit TrentonD's homepage!
 
Old 02-10-2006, 06:43 AM Re: Random image link
FutileSoul's Avatar
Ultra Talker

Posts: 383
Location: Michigan
Trades: 0
alright, thanks
__________________

Please login or register to view this content. Registration is FREE
- The Congregation of Man
FutileSoul is offline
Reply With Quote
View Public Profile Visit FutileSoul's homepage!
 
Reply     « Reply to Random image link
 

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