I am writing an array and I am having trouble sorting out certain results. I have written the following:
$l->where(‘city’, ‘Philadelphia’);
and it works fine and also works when I use: $l->where(‘city’, ‘Philadelphia’, true); but I want to use
$l->where(‘city’, ‘Philadelphia’, false); or $l->where(‘city’ != ‘Philadelphia’);
or something similar so that the system displays results that DO NOT have Philadelphia as the city name. I know I am missing something dumb here. Can someone please help me?