| | PHP HTML class / printing SELECT dropdown box
/*
Here's a very handy class function for printing HTML SELECT. I normally use it with dynamic arrays i.e. result set from an SQL query
*/
class html {
function print_select($select_name, $select_array, $selected_value="", $js="", $multiple="") {
//
// print a select box
// parameters:
// 1. name of the select box
// 2. array with keys and values
// ... | |  More... 10/26/05 | | | | |
|