view pages/news.inc.php @ 1075:7e497188e4c6

Use long tags.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 24 Jan 2017 17:59:55 +0200
parents ffacd904fd1f
children bbc0a3d0b51e
line wrap: on
line source

<?php
//
// FAPWeb - Simple Web-based Demoparty Management System
// News page
// (C) Copyright 2012-2015 Tecnic Software productions (TNSP)
//
echo stGetSetting("newsHeader");

if (($res = stExecSQL("SELECT * FROM news ORDER BY utime DESC")) !== FALSE)
{
  foreach ($res as $item)
    stPrintNewsItem($item);
}
?>