hey kennis
this is how you should do it:
<?php
$now = strtotime("-14 hours");
echo date("Y-m-d",$now);
?>
this will output current year, month and date after subtracting 14 hours from it, to see more accurate output, use:
date("Y-m-d H:i:s")
Wojciech Pirog
www.campusgrind.com