Just want a simple html select box with a couple values that wont change in my recordset. Such as:
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
Because if i do for example: $client = new RBO_Field_Select(_M('Client')); this requires me to specify a another recordset to fetch the values from... I dont want that i just want a simple select box with my custom values as above.
Thanks