Hi,
I have a field in a database table named "features". It has a value of:
feature1,feature2,feature3,feature4,feature5 (and so on)
I want to display the features in a bulleted list, like this:
<li>feature1</li>
<li>feature2</li>
<li>feature3</li>
<li>feature4</li>
<li>feature5</li>
(And so on)
Is there a way I can do this with PHP & Arrays? Can anyone show me a code example?
Thanks!