Hi!
Maybe it´s not that good coding (mixing html and php, dirty, I know), and not exactly what the question ist about, but it works:
<FORM ACTION="myscript.php" METHOD="POST" NAME="auswahl">
<SELECT NAME="mymenu">
<OPTION value="not selected" selected>Choose one!
<?php
$j=0;
while ($item[$j]){
?>
<OPTION value="<?echo $item[$j]?>"><?echo $item[$j]?>
<?php $j++;}?>
</SELECT>
</form>
(a problem: you have to click a submit-button, with some javascripting (yes more dirty mixing...) this problem could be solved...)
$item is taken out from a database, the result is a pull down menu...
The chosen item is in $mymenu in the page myscript.php
albin