Current location: Hot Scripts Forums » General Web Coding » JavaScript » Updating image every month automatically


Updating image every month automatically

Reply
  #1 (permalink)  
Old 07-26-07, 04:03 AM
kavithadevan kavithadevan is offline
Newbie Coder
 
Join Date: Jul 2007
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Updating image every month automatically

Hi
I am trying to create some websites in that website i have images field in that image field(totally i have 12 images) in my website i want to update my images according to month.If the month is january i want to display first picture .if it is feb then it shows 2nd image like this.I created like for a week but i cant find idea for this can anyone help me and can anyone send some example code for this.

thanks
Reply With Quote
  #2 (permalink)  
Old 07-26-07, 09:09 AM
End User's Avatar
End User End User is offline
Level II Curmudgeon
 
Join Date: Dec 2004
Posts: 3,027
Thanks: 14
Thanked 35 Times in 33 Posts
This code will show the current month and should be easy to modify to show an image associated with each month:

Code:
<script type="text/javascript">
function show_now(){
var my_month=new Date()

var month_name=new Array(12);
month_name[0]="January"
month_name[1]="February"
month_name[2]="March"
month_name[3]="April"
month_name[4]="May"
month_name[5]="June"
month_name[6]="July"
month_name[7]="August"
month_name[8]="September"
month_name[9]="October"
month_name[10]="November"
month_name[11]="December"

alert ("Current month = " + month_name[my_month.getMonth()]);
}
</script>
__________________
I don't live on the edge, but sometimes I go there to visit.
-------------------------------------------------------------------------
Sanitize Your Data | Oracle Date & Substring Functions | Code Snippet Library | [url=http://www.codmb.com/Call Of Duty[/url]
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Updating mysql automatically? ragnartm PHP 3 12-03-06 04:30 AM
Image Upload Perms automatically set to 600 progress Perl 2 10-05-05 12:19 PM
VOXROX introduces a complete line of Celeron and Pentium 4 S Everyday General Advertisements 0 11-01-04 10:27 AM
how to draw an image inside a table? davidklonski HTML/XHTML/XML 2 07-06-04 10:27 AM
Disable form fields to be submitted RickyRod JavaScript 2 05-24-04 10:15 AM


All times are GMT -5. The time now is 11:27 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.