view news.inc.php @ 101:1b4ae1432989

Comment.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 19 Oct 2013 15:46:55 +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);
}
?>