IT Community - Software Programming, Web Development and Technical Support

Add a number of days to a date

This is a discussion on Add a number of days to a date within the HTML, CSS and Javascript Coding Techniques forums, part of the Web Development category; Hi all... Can anyone tell me how can i add a number of days to a date. Thanks in advance......


Go Back   IT Community - Software Programming, Web Development and Technical Support > Web Development > HTML, CSS and Javascript Coding Techniques

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 03-04-2008, 09:59 PM
itbarota itbarota is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 547
itbarota is on a distinguished road
Default Add a number of days to a date

Hi all...


Can anyone tell me how can i add a number of days to a date.


Thanks in advance...
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 03-04-2008, 10:01 PM
Pvinothkumar Pvinothkumar is offline
D-Web Analyst
 
Join Date: Sep 2007
Posts: 237
Pvinothkumar is on a distinguished road
Default Re: Add a number of days to a date

Hi all...


Try this code to add a number of days to a date:

<script language="JavaScript">
function addDays(myDate,days) {
return new Date(myDate.getTime() + days*24*60*60*1000);
}

alert(addDays(new Date(),10));
</script>

Thanks...
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 03-05-2008, 02:49 AM
rrrajesh84in rrrajesh84in is offline
D-Web Master
 
Join Date: Mar 2007
Posts: 399
rrrajesh84in is on a distinguished road
Default Re: Add a number of days to a date

hi

thanks it really helps me..

will u please tell me how to add years in it
__________________
.....................................
''''''
Rajesh''''''
Ants. . . . . . Like me
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 03-20-2008, 09:23 PM
GDevakii GDevakii is offline
D-Web Sr.Programmer
 
Join Date: Aug 2007
Posts: 138
GDevakii is on a distinguished road
Default Re: Add a number of days to a date

function daysInMonth(iMonth, iYear)
{
return 32 - new Date(iYear, iMonth, 32).getDate();
}
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 08-08-2008, 12:06 AM
suman suman is offline
D-Web Trainee
 
Join Date: Aug 2008
Posts: 27
suman is on a distinguished road
Default Re: Add a number of days to a date

Quote:
hi

thanks it really helps me..

will u please tell me how to add years in it
hi this is omi


i want to know about that.
__________________
Free templates
web design company
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 09-22-2008, 11:36 PM
Miakoda Miakoda is offline
D-Web Trainee
 
Join Date: Jul 2008
Posts: 49
Miakoda is on a distinguished road
Default Re: Add a number of days to a date

import java.util.*;
import java.text.*;

public class Testing {

public static void main(String[] args) {
Calendar cal = Calendar.getInstance();
cal.add(Calendar.DATE, 100);
System.out.println(new SimpleDateFormat("dd-MM-yyyy").format(cal.getTime()));
}

}
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 09-23-2008, 01:38 AM
stargold stargold is offline
D-Web Trainee
 
Join Date: Jul 2008
Posts: 37
stargold is on a distinguished road
Default Re: Add a number of days to a date

Hey, I didn't know this thanks for sharing.
__________________
QA Test Management
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Show the number of days, hours and seconds till Y3K. itbarota HTML, CSS and Javascript Coding Techniques 1 03-10-2008 01:28 AM
calculate the number of days in the current month itbarota HTML, CSS and Javascript Coding Techniques 1 02-08-2008 06:30 AM
How do I work out the date seven days before a text string mm/dd/yy? itbarota HTML, CSS and Javascript Coding Techniques 1 01-01-2008 08:42 PM
How can I calculate the number of days elapsed between two dates? itbarota HTML, CSS and Javascript Coding Techniques 2 12-19-2007 09:14 PM
How can we know the number of days between two given dates using PHP? Sabari PHP Programming 5 09-27-2007 07:24 AM


All times are GMT -7. The time now is 12:40 PM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0