How to create list on a dsp?
Author: martinandheather@gmail.com (byjones)
If I had a table with a number of string values in, how would I output this on a DSP as an unordered list (with UL and LI tags)?
e.g.
table SOMEVALUES
FIELD TYPE
======================
ID int 5 Pkey
VALUE String
with the values
1 Item1
2 Item2
3 Item3
4 Item4
I would like to have, in the generated source
< ul class="myclass">
< li>Item1< /li>
< li>Item1< /li>
< li>Item1< /li>
< li>Item1< /li>
< /ul>
I would then style this with my own CSS
Thanks in advance
Martin




