<?php
$hierSel =& $form->addElement('hierselect', 'test', 'Test:', null, '/');
$main[0] = 'Pop';
$main[1] = 'Classical';
$main[2] = 'Funeral doom';
$sec[0][1] = 'Red Hot Chili Peppers';
$sec[0][2] = 'The Pixies';
$sec[1][3] = 'Wagner';
$sec[1][4] = 'Strauss';
$sec[2][5] = 'Pantheist';
$sec[2][6] = 'Skepticism';
$hierSel->setMainOptions($main);
$hierSel->setSecOptions($sec);
?> |