Using server side Form_CustomValidate event

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

Using server side Form_CustomValidate event

Post by actarus99 »

Hi, my code stopped working and I can't see any error message anymore...

function Form_CustomValidate(&$customError)
{
if (($tetto - $limite) < '0') {

        $this->setFailureMessage("warning");
		return false;
}

    return true;
}

arbei
User
Posts: 9787

Post by arbei »

If you use v2024, you better refer to the example in docs.


actarus99
User
Posts: 38

Post by actarus99 »

Thank You !!!
It Works


Post Reply