In PHP, how could I create a variable called $livetime that equals the current time minus 1 hour?
$livetime
First convert hours into seconds (3600) then use the following:
3600
$your_date = date('F jS, Y',time() - 3600);