when loading my form (from variables) i can easily set the value of most text form items with the value tag like this:
<input type="text" name="fname" id="fname" value="<?php print "$fname";?>" />
how can i do the same with select input form elements? i guess i have to use a script?
thanks a lot