Let's say I got this time 21:07:35
now and this time into a variable 21:02:37
like this
<?php
$current_time = "21:07:35";
$passed_time = "21:02:37";
?>
Now I want check if $current_time
is less than 5 minutes
then echo You are online
So how can I do this in PHP?
Thanks
:)