How to make From date later than To date

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
vintoICT
User
Posts: 407

How to make From date later than To date

Post by vintoICT »

I have 2 date fields for when a candidate got a degree . One is DATE FROM AND THE OTHER IS DATE T0
I want a warning or pop if to date is later than from date. eg if FROM date is 12/2/1990 to date can not be 10/1/1989 .


mobhar
User
Posts: 11703

Post by mobhar »

You may simply use Row_Inserting and/or Row_Updating server event, for example:

if (strtotime($rsnew["DateFrom"]) > strtotime($rsnew["DateTo"])) {
    $this->setFailureMessage("<strong>Date From</strong> cannot be greater than <strong>Date To</strong>.");
    return false;
}

Post Reply