Welcome Guest, Not a member yet? Register   Sign In
I need a help with dropdown list
#11

Thanks I will let you know when it work



(10-30-2014, 06:45 AM)InsiteFX Wrote: Place in helpers.
Code:
// --------------------------------------------------------------------

/**
* build_dropdown()
*
* Builds a select/options dropdown.
*
* @access    public
* @param    string    - the select css class id
* @param    string    - the select css class values
* @param    object    - the database object
* @param    string    - the selected option value
* @param    string    - the onchanged method
* @return    string    - the output string
*/
if ( ! function_exists('build_dropdown'))
{
    //                       id         class    name    array        selected         onchange
    function build_dropdown($id = '', $classes, $name, $dropdown, $selected_value, $onchange_method = '')
    {
        $output  = "<select id='$id' class='$classes' name='$name' $onchange_method>\n";

        foreach ($dropdown as $key => $text)
        {
            $output .= "<option value=\"" . $key . "\"";

            if ($key == $selected_value)
            {
                $output .= " selected";
            }

            $output .= ">" . $text . "</option>\n";
        }

        $output .= "</select>\n";

        return ($output);
    }
}
Reply


Messages In This Thread
I need a help with dropdown list - by Maijane - 10-29-2014, 01:30 AM
RE: I need a help with dropdown list - by Maijane - 10-29-2014, 09:18 AM
RE: I need a help with dropdown list - by Maijane - 10-29-2014, 09:15 AM
RE: I need a help with dropdown list - by Maijane - 10-29-2014, 09:17 AM
RE: I need a help with dropdown list - by Maijane - 10-29-2014, 09:17 AM
RE: I need a help with dropdown list - by Maijane - 10-29-2014, 09:19 AM
RE: I need a help with dropdown list - by ciadmin - 10-29-2014, 08:40 PM
RE: I need a help with dropdown list - by Maijane - 10-30-2014, 06:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB