date("Y-m-d")) { return ''; } if (file_exists($weblog_path . "/" . $newdate . ".php")) { return $newdate; } } } function previous_log ($date) { global $weblog_path; $first_log = "2000-03-15"; $epoch = mktime(0, 0, 0, substr($date, 5, 2), substr($date, 8, 2), substr($date, 0, 4)); while ($epoch = $epoch - 86400) { $newdate = date("Y-m-d", $epoch); if ($newdate < $first_log) { return ''; } if (file_exists($weblog_path . "/" . $newdate . ".php")) { return $newdate; } } } ?> My First Weblog: <? echo $todays_log; ?>

Previous log:

This is the first entry.

Next log:

This is the last entry.