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 the table and converted into time format, and then i'm trying to calculate the difference with the current date. But, not getting right answer... this is my code
$date=$row['POSTED'];
$mydate=date('Y-m-d H:i:s',strtotime($date));
$interval = time('Y-m-d H:i:s')-$mydate;
echo round(abs(time($interval) / 60))." minute";
and i'm getting output like..
1314484193 minute
any suggestion and help will be appreciated !!!
$mydateor$intervalto sanity-check that they are valid? – Oli Charlesworth Aug 27 '11 at 22:40