Language: PHP Highlight Mode: PHP Last Modified: March 01st, 2009
<?PHP/* formDropDown - create an HTML <SELECT>
* vars: $name - the form variable NAME
* $value - the SELECTED option
* $labels - assoc. array, list of values=>labels
* returns: string, HTML (i.e. for use in echo or print statement)
*/FUNCTION formDropDown($name,$value,$labels){$html="<SELECT NAME=\"$name\">\n";$key=KEY($labels);WHILE($key!=""){IF($key==$value){$selected="SELECTED";}ELSE{$selected="";}$html.="<OPTION VALUE=\"$key\"$selected>$labels[$key]\n";NEXT($labels);$key=KEY($labels);}$html.="</SELECT>\n";RETURN$html;}?>
SQL University.net courses meet the most demanding needs of the business world for advanced education
in a cost-effective manner. SQL University.net courses are available immediately for IT professionals
and can be taken without disruption of your workplace schedule or processes.
Compared to traditional travel-based training, SQL University.net saves time and valuable corporate
resources, allowing companies to do more with less. That's our mission, and that's what we deliver.