hi,i thought i'd fixed this prb,but i have'nt.i have a edit form with a drop down.i want the drop down to show the value that is saved in the databse along with the other values.ie,when i click the edit form,the value in the drop down that is visible should be the 1 that the databse stores.but it should also hold the other options.any ides how i can go about with it.i've dne the following
<?php
$query=caseQuery("select designation from dsg");
echo "<select name='dsgn' >";
while($noticia = mysql_fetch_assoc($query)) {
echo "<option value='$noticia[designation]'>$noticia[designation]</option>";
}
echo "</select>";
?>