12-07-2007, 11:33 AM
|
#4 (permalink)
|
|
The Wanderer
Join Date: Nov 2007
Location: Denmark
Posts: 21
Thanks: 4
|
Yes, in a nested list like so...
Code:
<ul>
<li>Backup
<ul>
<li>Tape
<ul>
<li>LTO</li>
<li>RTO</li>
...
</ul>
</li>
</ul>
</li>
<li>Motherboard
<ul>
...
</ul>
</li>
</ul>
I think I need to somehow split/explode the strings into an multidimensional array. From there I would output the list.
This is actually very close to working for me: Convert anything to Tree Structures in PHP
But I'm battling the plotTree function to output it for me.
|
|
|