Seach Time Stamp Script By Wallpaperama.com
function search($session_time)
{
//$session_time ="1151348975";
echo"You Entered: $session_time
"; echo"The Current Time is = ".time()."
"; $time_difference = time() - $session_time ;
echo"time_difference = ".$time_difference."
"; $seconds = $time_difference ;
$minutes = round($time_difference / 60 );
$hours = round($time_difference / 3600 );
$days = round($time_difference / 86400 );
$weeks = round($time_difference / 604800 );
$months = round($time_difference / 2419200 );
$years = round($time_difference / 29030400 );
echo"seconds: $seconds
"; echo"minutes: $minutes
"; echo"hours: $hours
"; echo"days: $days
"; echo"weeks: $weeks
"; echo"months: $months
"; echo"years: $years
"; }
if($_POST['session_time'])
{
echo search($_POST['session_time']);
echo'
'; }
else
{
?>
}
?>
This script was created from support from Webune.com Web Hosting.