Create custom field select box to search for "more than" values
for example i have a custom field called bedrooms (cp_bedrooms)
i can create the select box like so :
<select>
<option value="1" selected="selected">1 bed+</option>
<option value="2">2 beds+</option>
<option value="3">3 beds+</option>
</select>
but how can i link it so the results will show at least the selected value and others with higher value.....
so if a user searches for 2 beds+ it will show all ads with 2 bedrooms and above
i will be implementing the select box into my own custom search form
thanks.