view pages/news.inc.php @ 571:ce11ea112a65

Change the header blurb a bit.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 23 May 2014 17:18:33 +0300
parents ed2247111fdd
children ffacd904fd1f
line wrap: on
line source

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

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