Jump to content

how to compare two timestamps


mflevie44

Recommended Posts


$pDate = $_GET['txtPDate'];

$pTime = $_GET['txtPTime'];


 

$varDat = strtotime($pDate);

$varTime = strtotime($pTime);

 

$nxtDay = strtotime("+1 day", $varDat);

 

$lowerTime = strtotime("07.30");

$upperTime = strtotime("20.30");

 

if($varDat < $nxtDay)// This comparison doesn't seems to be working

{

echo "Pick up Date atleast 24hrs after the current Date";

}

else if(!($varTime >= $lowerTime) || !($varTime <= $upperTime))

{

echo "Pick up Date atleast 24hrs after the current time";

}

Link to comment
https://forums.phpfreaks.com/topic/282549-how-to-compare-two-timestamps/
Share on other sites

Date elements need to be in yyyy-mm-dd sequence to do comparisons.

 

I have already shown you how to do time comparison in http://forums.phpfreaks.com/topic/282512-finding-time-range-between-two-given-times-in-php/?do=findComment&comment=1451618

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.