Hi
I have a array like ('mary', 'johnny', 'butch', 'pony', 'katy', 'chuck', 'norris')
The number of elements can vary...
How can I build a nice list from all these elements, like this:
<ul>
<li>
Mary
Johnny
Butch
</li>
<li>
Pony
Katy
</li>
<li>
Chuck
Norris
</li>
?
Basically build the list like a spiral:
> -------------
|
<--------------
|
>--------------
|
<--------------
The number of list items is fixed, for eg. 3 in the example above