Jump to content

Subtracting Dates


Skatecrazy1

Recommended Posts

Well, I'm creating a sort of task manager, that shows the start date of a task, the end date of a task, the task name, and the duration.  The latter is what I'm having problems with:

I've tried and tried but can't seem to get the difference between the start and end date (in the yyyy-mm-dd mysql format).  has anyone done this sort of thing before?
Link to comment
https://forums.phpfreaks.com/topic/26107-subtracting-dates/
Share on other sites

if you don't mind using an extra query (its pretty fast anyway) the time/date calculations are best done in mysql - much better/reliable support in mysql than php.

[url=http://dev.mysql.com/doc/refman/4.1/en/date-and-time-functions.html]http://dev.mysql.com/doc/refman/4.1/en/date-and-time-functions.html[/url]
Link to comment
https://forums.phpfreaks.com/topic/26107-subtracting-dates/#findComment-119383
Share on other sites

well, when i run the query SELECT DATEDIFF('2006-11-21','2006-11-24') in phpMyAdmin, it returns 3, but what I need now is to be able to echo that info for each row (in my list of tasks)

I can't figure out how to do it (trust me, I've been trying different things)
Link to comment
https://forums.phpfreaks.com/topic/26107-subtracting-dates/#findComment-119518
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.