Hi I have a database table called categories.
But I would like to know how to make the controller and view work I am new to grocery crud please help. I would like to be able to insert categories form a form.
CREATE TABLE IF NOT EXISTS `categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `name` varchar(100) NOT NULL, `date_added` datetime NOT NULL, `date_edit` datetime NOT NULL, `publish` int(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=24 ;