1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00
Files
archived-web-php/archive/2023.php
2023-01-06 13:09:49 +03:00

22 lines
459 B
PHP

<?php
$_SERVER['BASE_PAGE'] = 'archive/2023.php';
include_once __DIR__ . '/../include/prepend.inc';
include_once __DIR__ . '/../include/pregen-news.inc';
news_archive_sidebar();
site_header("News Archive - 2023");
?>
<h1>News Archive - 2023</h1>
<p>
Here are the most important news items we have published in 2023 on PHP.net.
</p>
<hr>
<?php
print_news($NEWS_ENTRIES, null, 500, 2023);
site_footer(['elephpants' => true, 'sidebar' => $SIDEBAR_DATA]);