i have this code which displays each category in a drop down selection field, i have created a edit file and which it to select the category for the specific post i am editing but also display the rest of the categories incase i may want to change the category to something different.
<?php
foreach (getcat() as $category){
?>
<option value="<?php echo $category['id'];?>"><?php echo $category['name']; ?></option>
<?php
}
?>