Ejemplo n.º 1
0
 public static function select( $attr, $options, $val = "", $options_attr = array() ) {
   
   
   $html = self::open( "select", $attr );
   $html .= WOOF_HTML::options( $options, $val, $options_attr );
   $html .= self::close("select");
   
   return $html;
   
 }