#!/usr/bin/env php
* @version $Id: html_select.php 3 2009-10-26 01:32:52Z wwccss $
*/
include '../front.class.php';
$groups['group1']['a'] = 'texta';
$groups['group1']['b'] = 'textb';
$groups['group2']['c'] = 'textc';
$groups['group2']['d'] = 'textd';
echo html::selectgroup('select', $groups);
?>