 includes/functions/display.php
functions
|  select_box
string select_box(string $name, string $default, array $options)
Generates an more advanced selection box from the given options.
If the theme has a defined function theme_select_box() it outputs that result instead of the default result
| PHP: |
echo select_box('image', '1', array('1'=>'option1', '2'=>'option2', '3'=>'option3'));
|
Arguments - $name
the name of the <select> object
- $default
the default selected value
- $options
an array of all possible values
|