Code: Alles auswählen
<?php
$chat = implode('',file('/home/httpd/vhosts/magboard.com/httpdocs/chat/chat-online.php'));
echo($chat);
?>
Léo
Code: Alles auswählen
<?php
$chat = implode('',file('/home/httpd/vhosts/magboard.com/httpdocs/chat/chat-online.php'));
echo($chat);
?>
Code: Alles auswählen
<?php
$chat = implode('',file('chat/testausgabe.php'));
echo($chat);
?>
Code: Alles auswählen
$chat = implode('',file('chat/testausgabe.php'));
echo($chat);
Code: Alles auswählen
<?php
$listfile = fopen("http://scripts.blitzed.org/chanuserlist?channel=%23channel&pass=passwort", "r");
$nickname = fgets($listfile);
while (trim($nickname) != "") {
echo "Online: " . trim($nickname) . ",";
$nickname = fgets($listfile);
}
echo "</ul>";
fclose($listfile);
?>
Code: Alles auswählen
<?php
$listfile = fopen("http://scripts.blitzed.org/chanuserlist?channel=%23channel&pass=passwort", "r");
$nickname = fgets($listfile);
while (trim($nickname) != "")
{
$chatonline = "Online: " . trim($nickname) . ",";
$nickname = fgets($listfile);
}
$chatonline = "</ul>";
fclose($listfile);
?>
<html>
<head>
<title>Chat</title>
</head>
<body>
<?php
echo($chatonline);
?>
</body>
</html>