Certification Verification
newPerformScriptCommand('GoToSearch');
$result = $newPerformScript->execute();
$findCommand = $fm->newFindCommand("Pacific_Safety_Solutions_v3");
$findCommand->addFindCriterion(“Serial”, $name);
$findCommand->setRange(0, 1);
$result = $findCommand->execute();
if (FileMaker::isError($result)) {
echo($result->getMessage());
return;
}
$record = $result->getFirstRecord();
$color = $record->getField("Employee Name");
echo("We searched for $name and found the favorite color to be $color");
?>