Way Back Archives

If the page below does not work correctly, click here.

“.$row[“title”].”

“;
$date = date(“n-j-Y”, $row[“timestamp”]);
echo “by ” . $row[“author”] . ” ” . $date . “

“;
echo $row[“article”];
} else {
/* otherwise generate the list of all articles */
$query = “SELECT * FROM Parallel Order By timestamp ASC”;
$out = mysql_query($query);
while ($row = mysql_fetch_array($out)) {
echo ‘‘;
$date = date(“n-j-Y”, $row[“timestamp”]);
echo $date . ” ” . $row[“title”] . “

“;
}

}
?>

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.