I have a similar problem again but this time related to retrieving text values in select box.
I have this in template:-
HTML Code:
<select name="category" size="1" id="category">
<option value="Arts and Literature">Arts and Literature</option>
<option value="Blogs and Personal">Blogs and Personal</option>
<option value="Cartoon and Animations">Cartoon and Animations</option>
<option value="Technology">Technology</option>
</select>
Suppose, the value in the database is
Technology, How do I retrieve it automatically selected in the select box.
Thank you