<?php
$date1 = '14 June 2002';
$date2 = '05 Feb 2006';
$its1 = strtotime($date1);
$its2 = strtotime($date2);
printf("
The difference between %s and %s is %d seconds.
", $date1, $date2, $its2 - $its1);?>
Mainly about the process of programming as both work and study, starting from the ground up.
No comments:
Post a Comment