ok so i believe that i should know this but i have not really dove into dates with php. Ok so what i am trying to do is find the latest date between 2 dates. And if the dates are the same then find the latest time then echo out the the latest file
$fileonedate = date("m/d/Y",filemtime("page1.php"));
$filetwodate = date("m/d/Y",filemtime("page2.php"));
$fileonetime = date("H:i:s",filemtime("page1.php"));
$filetwotime = date("H:i:s",filemtime("page2.php"));
thanks in advance