";
$atts = array(
'name' => 'table',
'table' => 'group',
'format' => '%s [%s]',
'fields' => 'groupname,gid',
);
$content = 'empty';
$ds =& $fds->getFormDs( $atts, $content );
$vals = $ds->getValues();
echo "getValues()\n
";
print_r( $vals );
echo "
\n";
echo "wbFormDatasouce: Range
";
$atts = array(
'name' => 'range',
'low' => '13',
'high' => '101',
'step' => '10'
);
$content = 'empty';
$ds =& $fds->getFormDs( $atts, $content );
$vals = $ds->getValues();
echo "getValues()\n";
print_r( $vals );
echo "
\n";
echo "wbFormDatasouce: List
";
$atts = array(
'name' => 'list',
// 'values' => '1,2,3,4,5',
// 'labels' => 'cat,dog,ant,bat,bee',
);
$content = 'empty';
$ds =& $fds->getFormDs( $atts, $content );
$vals = $ds->getValues();
echo "getValues()\n";
print_r( $vals );
echo "
\n";
wbDebugger::printMsg();
?>