in reply to Dynamic menu generation

I forgot to add that the members in the array aren't necessarily going to be in order. For instance @array could look like:

my @array = ( 'Main//Reviews//PC', 'Other Menu//Other//Sub//Menus', 'Main//Reviews//PS2', 'Main//News', 'Main//Reviews//XBox' );

--nutshell

Replies are listed 'Best First'.
Re^2: Dynamic menu generation
by tadman (Prior) on Oct 31, 2002 at 02:40 UTC
    You can always use sort @array so I don't see how this is an issue. What's your initial idea? Surely you have some code that was an attempt to solve this problem. What trouble did you have?
      I'm trying to take that array and generate the HTML shown above with it.

      --nutshell