I have data that contains links for a navigation bar. It should be structured exactly like an unordered list, with a header and then all of the corresponding links below that header. I cannot seem to build this correctly. This would be some sample data from the database.
HEADING LIST LINK
Favs google http://...
Favs yahoo http://...
Favs stackoverflow http://...
Site first link http://...
Site second link http://...
This data should then group all of the headings into one and then display the links associated with them. Is this even possible or maybe there is a better way?
I plan to use the "HEADING" and "LIST" to dynamically build a <UL> type of menu.
Well, this isn't working as I had hoped. Here is the array that is being built from the database. Notice how sidebar[0] and sidebar[1] rpeat the value "Favs". This will repeat the same value on my form which I don't want. All of the duplicate names should be grouped together. Is this possible?
Array
(
[date] => Sun, 25 Oct 2009
[sidebar] => Array
(
[0] => Array
(
[Favs] => Array
(
[author_sidebar_link] => google.com
)
)
[1] => Array
(
[Favs] => Array
(
[author_sidebar_link] => yahoo.com
)
)
[2] => Array
(
[Offsite] => Array
(
[author_sidebar_link_title] => something
)
)
[3] => Array
(
[Something] => Array
(
[author_sidebar_link] => something else
)
)
)
)