[Solved] PHP Comparing time - Code Redirect

PHOTO EMBED

Sat Dec 25 2021 14:06:26 GMT+0000 (Coordinated Universal Time)

Saved by @khalidlogi

$time = strtotime($timest);

$curtime = time();

if(($curtime-$time) > 1800) {     //1800 seconds
  //do stuff
}
content_copyCOPY

https://coderedirect.com/questions/387989/php-comparing-time