";
echo "";
echo "
";
echo "
";
echo "";
echo "Archives are generated nightly from our Live servers, retained for 30 days, and then kept monthly beyond that.
";
echo "
";
echo "
";
echo "| Downloads | Archive | Size | Created |
";
echo "";
$stmt = $main_db->prepare("SELECT downloads, archive, size, created, db_version, protected FROM archive_logs WHERE db_identifier = ? ORDER BY created DESC");
$stmt->bind_param("s", $identifier);
$stmt->execute();
$result = $stmt->get_result();
while ($row = $result->fetch_assoc()) {
echo "";
echo "| " . $row['downloads'] . " | ";
echo "" . $row['archive'] . " | ";
echo "" . formatSize($row['size']) . " | ";
echo "" . date("l F jS Y", strtotime($row['created'])) . " (" . timeElapsedString($row['created']) . ")";
echo " " . $row['db_version'] . "";
if ($row['protected'] == 1) {
echo "Protected";
}
echo " | ";
echo "
";
}
$stmt->close();
echo "";
echo "
";
echo "