View Single Post
Old 12-07-2007, 11:33 AM   #4 (permalink)
victorius
The Wanderer
 
victorius's Avatar
 
Join Date: Nov 2007
Location: Denmark
Posts: 21
Thanks: 4
victorius is on a distinguished road
Default

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.
Send a message via MSN to victorius
victorius is offline  
Reply With Quote