Code: Alles auswählen
If you can't enable allow_url_fopen on your webserver, you could try this version. It might or might not work for you, as it uses shell commands.
<?php
$listfile = `wget -O - http://scripts.blitzed.org/chanuserlist?channel=%23channel\&pass=pass 2>/dev/null`;
$nicks = split("\n", $listfile);
if(count($nicks)>0)
{
echo "<label>Currently on the chat:</label>\n";
echo "<ul>\n";
foreach($nicks as $nickname)
if(trim($nickname) != "")
echo "<li>" . $nickname . "</li>\n";
echo "</ul>\n";
}
?>
da aber der code bei phpbb anders sein muss wollte ich fragen ob mit das jemand für das phpbb umschreiben kann!
Bitte!![/url]