Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions archive/2026.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

use phpweb\News\NewsHandler;

$_SERVER['BASE_PAGE'] = 'archive/2026.php';
include_once __DIR__ . '/../include/prepend.inc';
news_archive_sidebar();
site_header("News Archive - 2026");
?>

<h1>News Archive - 2026</h1>

<p>
Here are the most important news items we have published in 2026 on PHP.net.
</p>

<hr>

<?php

print_news((new NewsHandler())->getNewsByYear(2026), null, 500);
site_footer(['elephpants' => true, 'sidebar' => $SIDEBAR_DATA]);