Jump to content

Date Difference


jeeva

Recommended Posts


hi Frnds,

how can i get date difference between two dates for example if i have selected 29-12-2006 and
05-01-2007 then i want display the dates like 30-12-2007,31-12-2007,01-01-2007,02-01-2007,03-01-2007 and 04-01-2007.

thanks in advance
jeeva..
Link to comment
Share on other sites

try this
[code]
<?php
$start = "20-2-2007";
$end = "3-3-2007";

$st =  explode("-",$start);
$newStart = strtotime("$st[2]-$st[1]-$st[0]"); //rearange date so it is Y-m-d/coverts to timestamp
$fi = explode("-",$end);
$newEnd = strtotime("$fi[2]-$fi[1]-$fi[0]");
do
{
echo date("d-m-Y",$newStart);
echo ", ";
$newStart = strtotime("+1 day", $newStart);

}while ($newStart < $newEnd)


?>
[/code]

it prints out all the dates from the start date to the end date
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.