No matter what timestamp I put in $time it always returns a time of hour:01 or hour:02 or hour:03 (hour is correct). I know not everything in my database happens in the first 3 minutes of every hour.
<?php
$time = 1170076298;
$showtime = date('m/d/y-h:m:s',$time);
echo "$showtime";
?>