I need to display some categories in tree form using php and javascript.
Where can i find some help?
My table looks like this
CREATE TABLE `categories` (
`category_id` bigint(20) NOT NULL auto_increment,
`parent_id` bigint(20) NOT NULL,
`category_name` varchar(100) NOT NULL,
`category_description` text NOT NULL,
`category_order` bigint(20) NOT NULL,
`active` enum('0','1') NOT NULL,
PRIMARY KEY (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;