I have this set:
$query = "(26=Asher)";
$search = $rets->SearchQuery("Property", "1", $query, array(
'Limit' => 30,
'Count' => 1,
'Format' => 'COMPACT-DECODED'
));
This dose return data for City of Asher.
But I now need to add "Listing Status" [54] = Active But now I ger nothing in the return.
$query = "(26=Asher),(54=Active)";
Please - what am I doing wrong?