I am trying to make a 'simple' admin module page to provide settings for a script.
I am working with the bloggie example to experiment.
Can someone explain how the sys_options work? Especially kateg.
~
As an example, I found these two 'settings':
INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES
('me_blgg_permalinks', 'on', 26, 'Enable friendly permalinks in Bloggie', 'checkbox', '', '', '0', ''),
('me_blgg_max_posts_to_show', '10', @iCategId, 'Max number of posts to show', 'digit', '', '', '1', '');
INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES
('me_blgg_permalinks', 'on', 26, 'Enable friendly permalinks in Bloggie', 'checkbox', '', '', '0', ''),
('me_blgg_max_posts_to_show', '10', @iCategId, 'Max number of posts to show', 'digit', '', '', '1', ''),
('me_blgg_checkbox', 'on', @iCategId, 'Max number of posts to show', 'checkbox', '', '', '2', '');
Thanks for any help.