Here are the archives entries in my weblog. '; echo "It was on haitus from July 1998 to October 1999, so there's a big gap in this list.

\n\n"; echo "\n"; } else { if (empty($day)) { echo "

Weblog Archives for " . $months[$month - 1] . " $year

\n"; // Build logfiles array: $logs_dir = opendir("$root_path/links/weblog/logfiles"); while ($logfile = readdir($logs_dir)) { if ((substr($logfile, 0, 4) == $year) && (substr($logfile, 4, 2) == $month)) { $logfiles[] = $logfile; } } closedir($logs_dir); asort($logfiles); for ( reset($logfiles) ; $logfile = current($logfiles) ; next($logfiles) ) { ereg("^([0-9]{4})([0-9]{2})([0-9]{2})\.html$", $logfile, $match); echo "\n\n

" . ereg_replace(", 0", ", ", date("l, d F Y", mktime(11, 1, 1, $match[2], $match[3], $match[1]))) . "

\n\n"; include("$root_path/links/weblog/logfiles/$logfile"); } } else { if (file_exists("$root_path/links/weblog/logfiles/$year$month$day.html")) { echo "

Weblog Entry for " . $day . ' ' . $months[$month - 1] . " $year

\n"; include("$root_path/links/weblog/logfiles/$year$month$day.html"); } else { echo "

No Weblog entry for " . $day . " " . $months[$month - 1] . " $year

\n"; echo "\n"; } } } ?>