Ok lets say you have all the articles in a directory... called "articles"
if(!$QUERY_STRING) {
if ($handle = opendir('articles/')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "<a href='articles.php?$file'>$file</a>";
}
}
closedir($handle);
}} elseif($QUERY_STRING) {
#Ok if its in an array... otherwise you need fopen, and fread..
$article = file("articles/$QUERY_STRING");
foreach ($article as $i) {
echo "$i<br>";
}}