require_once('TextFile.php');
?>
fj-NGMC: NGMP

> Home > NGMP
NGMP (NewsGroup Management Protocol)
define('NGMP_DIR', 'fj-docs/ngmp');
$d = dir(NGMP_DIR);
while (false !== ($entry = $d->read())) {
if(ereg("^ngmp6_?", $entry)){
$files[] = $entry;
}
}
$d->close();
sort($files);
foreach($files as $file) {
?>
$textFile = new TextFile(NGMP_DIR.'/'.$file);
print $textFile->getHtml();
?>
}
?>