Im trying to get my head round more of this plugin stuff.
In vB options I have a textarea. I explode that out into an array then I want to loop each item to display in an unordered list where ever on the template.
How can I make this more compatable with vB?
PHP Code:
if($vbulletin->options['enabled'] == 1)
{
$items = explode("\n", $vbulletin->options['html']);
echo '<ul>';
foreach($items as $item)
{
echo '<li>'.$item.'</li>';
}
echo '</ul>';
}
Thanks