I'd like to expand the search functionality so that users can enter in some text and have that matched against multiple fields eg name and email
How do I specify that in the "where" string?
if (!is_null($output['search']['value'])) {
$where .= '&&' . 'Name.ToLower().Contains("' . strtolower($output['search']['value']) . '")';
}