I'd like to have the previous chosen category as number one in the list all the time.
Like with the other lists in the update form:
CODE
<select name="month">
<option value="<?php echo $old_month; ?>"><?php echo $old_month; ?></option>
<option value="January">Januari</option>
<option value="February">Februari</option>
<option value="March">Mars</option>
<option value="April">April</option>
<option value="May">Maj</option>
<option value="June">Juni</option>
<option value="July">Juli</option>
<option value="August">Augusti</option>
<option value="September">September</option>
<option value="October">Oktober</option>
<option value="November">November</option>
<option value="December">December</option>
</select>
Does anyone know how to make a similar solution for the category list on the update entry page?