Ben bir hiyerarşi içinde MySQL veritabanı benim tüm kategoriler ve alt kategoriler almaya çalışıyorum:
Benim sonuç da (sadece örnek) gibi olmalıdır:
- Cat A
- Sub-Cat 1
- Sub_Sub_Cat 1
- Sub_Sub_Cat 2
- Sub_Cat 2
- Kedi B
- Cat C
- ...
MySQL code:
CREATE TABLE IF NOT EXISTS `categories` (
`category_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'for sub-categories'
PRIMARY KEY (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
Basitçe, ne PHP codes ile bir hirarchy onu alabilirim?