"; $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 "gsFormDatasouce: 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 "gsFormDatasouce: 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"; ?>