Welcome Guest, Not a member yet? Register   Sign In
Creating a menu from a categories table
#1

[eluser]skunkbad[/eluser]
I've been having a go at making a menu of categories from my categories table, and have seen some examples online (that I didn't really like or didn't work), and was wondering if anyone has a great way to do it.

Code:
CREATE TABLE `product_categories` (
  `category_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_name` varchar(24) NOT NULL,
  `parent_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`category_id`),
  UNIQUE KEY (`category_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8;

I'd like to be able to make the menu with nested unordered lists, based on the category relationships as parent/child. One of my goals is to allow the categories to have unlimited depth, and I've spent quite a bit of time trying to work something up, just to scrap it.

If anyone has some sample code, a link to a good tutorial, or would like to contribute (because this is going in my Community Cart application), I'd be very thankful.


Messages In This Thread
Creating a menu from a categories table - by El Forum - 12-03-2009, 10:55 AM
Creating a menu from a categories table - by El Forum - 12-03-2009, 11:53 AM
Creating a menu from a categories table - by El Forum - 12-03-2009, 12:33 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 02:27 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 04:45 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 06:07 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 06:50 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 07:06 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 07:13 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 08:33 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 09:49 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 10:00 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 11:58 PM
Creating a menu from a categories table - by El Forum - 12-04-2009, 12:10 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 01:30 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:03 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:14 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:43 AM
Creating a menu from a categories table - by El Forum - 06-16-2010, 04:35 AM
Creating a menu from a categories table - by El Forum - 06-16-2010, 03:02 PM
Creating a menu from a categories table - by El Forum - 06-17-2010, 04:08 AM



Theme © iAndrew 2016 - Forum software by © MyBB