Hi, I tried using "!=" as the not equal operator for finding records via php pages, however, it doesn't seemed to work. My code is as follows:
$findCom = $fm->newFindCommand('abcLayout');
$criterion = "!=" . "testvalue";
$findCom->addFindCriterion("field", $criterion);
$result=$findCom->execute()
All other operators such as "begin with", "contains" etc worked, except "not equal". I have also tried the following but it didn't work either.
$criteron = "omit, ";
Would someone be able to advise? Thanks a lot.