Hi to all
i just cant get the grasp of what im trying to do basically i'm making a script that will higlight a certain data(Date /time) in my table if data < 3 min of current time..
ex
$data="March 12, 2013, 16:18";
$current_time="March 12, 2013, 16:20"
if($data< 3min of $current_time)
{
echo"highlight me im fresh";
}
else if($data > 5min of $current_time)
{
echo"oldies";
}
something like that but i cant find a way to implement