Can anyone tell me if this is the right way to append the values to a
pre-defined scroll list column??

$output .= $q->scrolling_list(-name=> 'apps', -values=>"");
$output .= $q->append(-name=>'apps', -values=>"$val");

This gives me output as below which is not correct.

<select name="apps" size="1">
<option  value=""></option>
</select>
Landscape,Phhorce

I am trying to get something like this
<select name="apps" size="1">
<option  value="Landscape">Landscape</option>
<option  value="Phhorce">Phhorce</option>
</select>

I am trying to create a dropdown list on the form and want to put the values
in the $val as option in the DD List.

The $val holds a string as "Landscape,Phhorce"

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to