Weedpacket, thank you for your answer. I mean this.
<?php
$pplin = ('Countries','Spain','France','Germany','Italy');
?>
<select name="countries">
<?php
asort($pplin);
reset($pplin);
while (list ($p, $val) = each ($pplin)) {
?>
<option value="<?=$p?>"><?=$pplin[$p]?></option>
<?php
}
?>
</select>
<?php
I don't want to disply in SELECT list:
[FONT="Courier New"]<option value="0">Countries</option>[/FONT]
The first line in SELECT list should be:
[FONT="Courier New"]<option value="3">Germany</option> [/FONT](sorted alphabetically)