Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
793 views

How do I check the difference, in seconds, between two dates?

There has to be an easier way to do this. I have objects that want to be refreshed every so often, so I want to record when they were created, check against the current timestamp, and refresh as ...
1
vote
1answer
336 views

XSL Date & Time Difference Calculation (XSLT 1.0) - Revised question

Using XSLT 1.0 & receive dates in the following format: 20111129060804 and I have a need to be able to calculate differences between two of them. However, I cannot use any extensions. I also ...
1
vote
4answers
84 views

datetime difference in php

i want to display the date time difference between current date and stored date (which has been stored already in database). At the time of date difference calculation, i retrieved the date value from ...
1
vote
5answers
125 views

PHP Calculation 'downtime'

I've made an program in PHP that stores in a MySQL database when it's working. The table that shows whether the program is working or not looks like this: Table_name: downtime Working(int) ...
1
vote
5answers
539 views

How to Calculate Two Different Dates like 2 years, 5 months

I want to calculate the difference between two dates and want to convert it like 2 years, 5 months or only 3 months, or 2 days according to the difference considering all months are 30 days... For ...
0
votes
0answers
12 views

getting the latest date from db

I am storing a list of dates and time in Sqlite Database.I need the date and time which is nearer to the current time. For example -----------<br> 2011-12-20 10:00am<br> 2011-12-31 ...
0
votes
3answers
158 views

Difference in using DateTime.Now vs DateTime.UtcNow

As this Question's Answer from hightechrider mentions that code block as below is more right var start = DateTime.Parse("08/10/2011 23:50:31").Utc; if(start.AddMinutes(20) > DateTime.UtcNow) ...
0
votes
3answers
102 views

simple java program that enables 2 Time-format input and count the time-difference

I'd like to know how to make a simple program where user can gave 2 input time(hh:mm) format ---and receive the elapsing time as the output. the program will run and enable user to write time-input.. ...
0
votes
0answers
159 views

Getting the difference between 2 dates in a batch file

Given a date in "local" format -i.e. as returned by the DOS date and time commands, I want to calculate the number of milliseconds between that date and the current date. The application is so I can ...
0
votes
2answers
364 views

i want to date difference in week,month year in php?

I am new here and php i want to know how to calculate date difference in php. My date is mktime() formate. Please confirm this is current issue for me.
0
votes
3answers
406 views

Calculating date difference with timespan and future dates

I am trying to flag rows in a grid in the following order based on a date column When 2 or more days old from today then RED When 1 day old then YELLOW When 0 days old then GREEN When the date is in ...