Mailman
Grünschnabel
Hallo zusammen.
In diesem Script möchte ich gerne bestimmte Arrayelemente löschen.
Die Txt datei dazu:
Sagen wir mal ich möchte das er alles ausgibt, aber
@a und +d und g nicht.
Wie mache ich das?
Bin leider total überfordert.
In diesem Script möchte ich gerne bestimmte Arrayelemente löschen.
PHP:
<html>
<head>
<title>::: NickList :::</title>
</head>
<body bgcolor="#1B2B3B" text="#FFFFFF">
<b><font face="Arial" size="2">
<?php
$lines = file ('/dir/nicklist.txt');
$count = count($lines);
foreach ($lines as $line_num => $line) {
echo ($line) . "<br>\n";
}
echo "<br>";
if ($count == 1)
{
echo "There is ".$count." user currently on #yourchannel";
}
else{
echo "There are ".$count." users currently on #yourchannel";
}
?>
</font></b>
</body>
</html>
Die Txt datei dazu:
PHP:
@Mailman
@a
@b
@c
+d
+e
f
g
h
Sagen wir mal ich möchte das er alles ausgibt, aber
@a und +d und g nicht.
Wie mache ich das?
Bin leider total überfordert.