<?
$dir = opendir("/home/user/articles/");
if (!(isset($article)))
{
while ($article = readdir($dir))
{
print("<A HREF='article.php?article=$article'>$article</A><br>");
}
}
else
{
include("/home/user/articles/$article");
}
?>
You could also massage your filename to make it friendlier, like replacing all your "_"'s to spaces, etc, or have textfiles set up as $article-desc.txt and cough those up along with your articles.