Published in: Other
<?php function days_since ($time) { $startdate = strtotime($time); $presentdate = time(); $days = round(($presentdate - $startdate)/86400); return $days; } ?>
You need to login to post a comment.
Object-Oriented Programming in Pascal: A Graphical Approach
Covers all of the essential concepts of objectoriented programming, including object re-use, inheritance, virtual methods, and polymorphisms.
TimFletcher on 04/06/08
Published in: Other
<?php function days_since ($time) { $startdate = strtotime($time); $presentdate = time(); $days = round(($presentdate - $startdate)/86400); return $days; } ?>
You need to login to post a comment.