view news.inc.php @ 180:a3f0f2a3551a

Split stylesheets into separate files for different platforms and also split certain page-specifics into their own files.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 07 Nov 2013 11:17:15 +0200
parents a778629edff9
children
line wrap: on
line source

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

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