Hey,
I have a combo box and want to populate it with the selected value upon page reload. For a normal text field I would usually do something like this:
<input type="text" name="title" value="<?php echo $_SESSION['sellform']['title']; ?>">
How could I do the same for a drop-down box? E.g:
<select name="condition">
<option value="">--Condition--</option>
<option value="new">New</option>
<option value="used">Used</option>
</select>