$plugins = $Server->Get('plugins');
echo "<br /><br /><b>Plugins</b><br> ";
foreach($plugins as $plugin) {
echo $plugin."<br>";
}
That snippet above spits out a long list of plugins from a server. How can I store each plugin listed into SQL so that its stored as '$plugin[0]<br/>$plugin[1]<br/>$plugin[2]<br/>' and so on so that when I echo out somewhere its a nice list...?
Thanks in advance! :P