Answers for "comparing date php d-m-Y"

PHP
0

php compare dates

$date1 = "2021-01-15";
$date2 = "2021-01-18";

if ($date1 < $date2) {
 	echo "$date1 is earlier than $date2";
} else {
	echo "$date1 is later than $date2";
}
Posted by: Guest on January-11-2021

Browse Popular Code Answers by Language