Código PHP:
Ver original<?php
include('config.php');
include('login.php');
if($_SESSION[level] == 1)
{
}
else{
Header("Location: index.php"); }
$saydate = $_SESSION[datedb]; // Esto tendria que tener la fecha cuando caducaria
if($tiempohoy >= $saydate){
echo "Tiempo finalizado";
}else
{
echo "Aun hay tiempo";
}
?>
El cron se utilizaría si lo arias de la forma como te dije, pero lo haces de otra forma que también esta bien.