Can you help me, I have got success in getting result by this code
$search = $rets->Search("Property","RESI","(MLNumber=0+)");
print_r($search);
But when I do query with multiple options, it shows error in debug file RETS ReplyCode="20206" ReplyText="Invalid Query Syntax."
And for this error my php code is
$search = $rets->Search("Property","RESI","(City=Lexington),(Status=Sold)");
print_r($search);
I have found that search should be done in specific pair, here http://www.rapattoni.com/supp/mls/rets/documents/PDF/RETS1_5_Product_Release_Notice.pdf
I'm not able to find where I'm wrong.
Thanks