paguira
Messages postés12Date d'inscriptionlundi 8 janvier 2007StatutMembreDernière intervention 1 octobre 2008
-
9 avril 2008 à 15:25
coucou747
Messages postés12303Date d'inscriptionmardi 10 février 2004StatutMembreDernière intervention30 juillet 2012
-
9 avril 2008 à 16:31
Je cherche un algorithme pour créer un menu récursif du type :
<li>Titre 1</li>
<li>Titre 2
<li>Titre 3</li>
<li>Titre 4
<li>Titre 5</li>
<li>Titre 6</li>
</li>
</li>
DB:
DROP TABLE IF EXISTS `nav`;
CREATE TABLE `nav` (
`id` int(10) unsigned NOT NULL auto_increment,
`parent` int(10) unsigned default NULL,
`classement` int(10) unsigned default NULL,
`title` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`tree_id`),
KEY `tree_parent_id` (`tree_parent_id`,`tree_doc_id`)
) TYPE=MyISAM COMMENT='Site tree structure' AUTO_INCREMENT=7 ;