ok. got the code in there. in PHP 7 I can no longer write this below. The date construct changed. Do you know how to rewrite this?
$date = date('Y/m/d');
$mydate = date("Y/m/d",strtotime($Recordset1['RemovalDate']));
if ($mydate < $date) {
//do something
}
Thanks.


