Simple Drop down List Generator Script

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Simple Drop down List Generator Script

    PHP Code:
    <?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 ; } 
    ?>

    #THIS SCRIPT FOR WEBMASTERS#
    Please move script if i post in wrong Place!!!
    Last edited by arnage; 07.09.12, 09:29.

    #2
    Or something like this?

    PHP Code:

    $color_array 
    = array(/* ... */);

    echo 
    'Body Text Color:<br/>'."\n"
    echo 
    '<select name="body_text_color" title="Select Body Text Color">'."\n"
    echo 
    '<option value="">None</option>'."\n"
            foreach (
    $color_array as $col => $color) { 
                echo 
    '<option value="'.$color.'"'.($usersset['bodycolor'] == $color ' selected="selected">' '>').$col.'</option>'."\n"
            } 
    echo 
    '</select>'."\n"
    <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

    Comment

    Working...
    X