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 like. // 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 = "\n"; $menu .= "\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