Advertisement
Guest User

linuxgay

a guest
May 6th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.89 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <meta http-equiv="Content-Language" content="en-gb">
  5. <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
  6. <meta name="ProgId" content="FrontPage.Editor.Document">
  7. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  8. <META HTTP-EQUIV="Refresh" Content="180;URL=irc_stats.php">
  9. <title>::: Eggdrop -- NickList :::</title>
  10. </head>
  11.  
  12. <body bgcolor="#1B2B3B" text="#FFFFFF">
  13. <b><font face="Arial" size="2">
  14. <?php
  15. // Change filepath to where your nicklist.txt is being stored.
  16. $lines = file ('/home/RedBull/eggdrops/Eggdrop/web/nicklist.txt');
  17. $count = count($lines);
  18.  
  19. foreach ($lines as $line_num => $line) {
  20.     echo  ($line)  . "<br>\n";
  21. }
  22. echo "<br>";
  23.  
  24. if ($count == 1)
  25. {
  26.     echo  "There is ".$count." user currently on #yourchannel";
  27. }
  28. else{
  29.     echo  "There are ".$count." users currently on #yourchannel";
  30. }
  31. ?>
  32. </font></b>
  33. </body>
  34.  
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement