Method:
selectFBox()
Class:
FORM
Method Call:
include_once("core/html/FORM.php");
STRING FORM::selectFBox(STRING: $label, STRING: $name, ARRAY: $options, [INT: $size, INT: $override]);
If $options is:
array("apples", "bananas", "oranges",);then
$pString = FORM::selectFBox("Fruit", "fruit", $options);would return the string:
Fruit:<br /> <select name="fruit" size="3"> <option selected>apples</option> <option>bananas</option> <option>oranges</option> </select>