#!/usr/bin/env php
* @version $Id$
*/
include '../front.class.php';
$options['a'] = 'texta';
$options['b'] = 'textb';
$options['c'] = 'textc';
echo html::select('select', $options);
echo html::select('select[]', $options);
echo html::select('select', $options, 'a');
echo html::select('select', $options, 'a,c');
echo html::select('select', $options, 'ab');
echo html::select('select', $options, '', 'style="color:red"');
var_dump(html::select('select', array()));
<<