view news.inc.php @ 116:a95facb41c86

Some preliminary work on the votekey administration backend.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Oct 2013 12:41:30 +0300
parents e36c4d2b09c4
children 5837b9333964
line wrap: on
line source

<?
echo stGetSetting("newsDescription");

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