you want something like this I think:
build the dropdown from the db:
<?php
$sql="SELECT * FROM manu WHERE manuid>=1 ORDER BY manuname";
$result = mysql_query($sql) or $error.=(mysql_error());
}
$dd_manu="";
while ($row=mysql_fetch_array($result)) {
$mid=$row["manuid"];
$mname=$row["manuname"];
if ($pmanu==$mid)
{
$dd_manu.="<OPTION VALUE=\"$mid\" SELECTED>".$mname."</OPTION>";
} else {
$dd_manu.="<OPTION VALUE=\"$mid\">".$mname."</OPTION>";
}
}
?>
show it on the page like this:
<b>Manufacturer: </b> <select onChange='submit()' name='pmanu' id='pmanu' ><OPTION VALUE=0>Choose..<?php echo $dd_manu; ?></SELECT>
this bit : onChange='submit()'
is javascript and will submit the page whenever the dropdown is used - leave it out and put in a Submit button if you prefer (or have both)