<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.o$
 
<html>
 
 <head>
 
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 
  <title>news.earlsoft.co.uk</title>
 
 </head>
 
 <body>
 
<?php
 
require "common.inc";
 
 
$groups = $nntp->getgroups();
 
 
for($groupid=0; $groupid<count($groups); $groupid++){
 
  if (!$groups[$groupid]['readonly']) {
 
    $group=$groups[$groupid]['name'];
 
    print "  <a href=\"group.php?group=".urlencode($group)."\">".htmlspecialchars($group)."</a><br>\n";
 
  }
 
}
 
 
?>
 
 </body>
 
</html>
 
 |