Objective - to update table records via form field. If I have text field, the field remembers the value in such way: <input name="object" type="text" value=" <? echo $rows['object']; ?> "/> How to remember the value of List/Menu field? <select name="object"> <option selected="selected">--- choose ---</option> <option value="0">Beer</option> <option value="1">Wine</option> <option value="2">Vodka</option> </select>