view pages/news.inc.php @ 1114:51f24cb35fc8

s/SET_LEN_/SQL_LEN_/g
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 14 Oct 2019 10:31:39 +0300
parents bbc0a3d0b51e
children
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("msgNewsHeader");

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