How to rotate top page banner using php

Reply

Join Date: Jul 2006
Posts: 197
Reputation: vssp has a little shameless behaviour in the past 
Solved Threads: 5
vssp vssp is offline Offline
Junior Poster

How to rotate top page banner using php

 
0
  #1
Aug 19th, 2006
Hai friends,


I am very confused this task. please help me.
if five banners are stored in one location , I want to displayall the banners simultaniously in my application.

How to rotate the webpage top banner ? In my application i am getting the immage details using database.

Please send me any idea.
__________________
Thanks
Vssp
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 494
Reputation: Puckdropper is an unknown quantity at this point 
Solved Threads: 21
Puckdropper Puckdropper is offline Offline
Posting Pro in Training

Re: How to rotate top page banner using php

 
0
  #2
Aug 19th, 2006
Here's a rough idea of one way you can do it.

  1. function change($current_banner)
  2. {
  3. $number_of_banners = 5;
  4. if ($current_banner < $number_of_banners)
  5. {
  6. $current_banner++;
  7. }
  8. else
  9. {
  10. $current_banner = 0;
  11. }
  12. return $current_banner;
  13. }

  1. function get_filename($current_banner)
  2. {
  3. select $current_banner
  4. {
  5. case 1:
  6. $filename = "thebannername.jpg";
  7.  
  8. ...
  9.  
  10. }
  11. }

  1. //Display the banner
  2.  
  3. //Get filename
  4. $filename = get_filename($current_banner)
  5. //Use filename in HTML
  6. echo "<img src=\"" . $filename . "\">";
  7. //Go to next banner
  8. $current_banner = change($current_banner);
www.uncreativelabs.net

Old computers are getting to be a lost art. Here at Uncreative Labs, we still enjoy using the old computers. Sometimes we want to see how far a particular system can go, other times we use a stock system to remind ourselves of what we once had.
Reply With Quote Quick reply to this message  
Join Date: Jul 2006
Posts: 197
Reputation: vssp has a little shameless behaviour in the past 
Solved Threads: 5
vssp vssp is offline Offline
Junior Poster

Re: How to rotate top page banner using php

 
0
  #3
Aug 21st, 2006
Thanks for your replay
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:




Views: 1956 | Replies: 2
Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC