|
Home All Articles Contact Zawgyi Myanmar Font |
|
Home >> Snippet List >> Snippet Name Build select menu from databaseDescription This small function is used to build a select menu with the values from
a database table Create the SQL statement outside the function with two values, one for the (option) value and one for the (option) label The function is completely dynamic, you can change the name for the html elements (label and select) and you can use all tables you likePHP Snippet <?PHP // example sql statement $sql = "SELECT col_for_value, col_for_label FROM some_table"; FUNCTION database_select($tbl_value, $tbl_label, $select_name, $label) { GLOBAL $sql; $result = MYSQL_QUERY($sql); $menu = "<label for=\"".$select_name."\">".$label."</label>\n"; $menu .= "<select name=\"".$select_name."\">\n"; $menu .= " <option value=\"\""; $menu .= (!ISSET($_REQUEST[$select_name])) ? " selected" : ""; $menu .= ">...\n"; WHILE ($obj = MYSQL_FETCH_OBJECT($result)) { $menu .= " <option value=\"".$obj->$tbl_value."\""; $menu .= (ISSET($_REQUEST[$select_name]) && $obj->$tbl_value == $_REQUEST[$select_name]) ? " selected" : ""; $menu .= ">".$obj->$tbl_label."\n"; } $menu .= "</select>\n"; MYSQL_FREE_RESULT($result); RETURN $menu; } // example: // use the col names from the table too... ECHO database_select("col_for_value", "col_for_label", "my_select", "Select from:"); /* example output <label for="my_select">Select from:</label> <select name="my_select"> <option value="" selected>... <option value="val_1">value 1 <option value="val_2">value 2 ... </select> */ ?> |
|
All photograph,logos, articles, comments and trademarks etc, in this site are property of their respective owners.All the rest (c) 2006 by PhpMyanmar.com. |