File size: 593B
<?php
require 'sys/config.php';
$set = $sql->query('SELECT `new` FROM `config`')->fetch_assoc();
$set = $set['new'];
$new = $sql->result('SELECT COUNT(*) FROM `files` WHERE `time`>"'.(time()-$set*60*60).'"');
if($sql->result('SELECT COUNT(*) FROM `files`')>0)
{
$last = $sql->query('SELECT `id`,`name`,`opis`,`time` FROM `files` ORDER BY `time` DESC LIMIT 1')->fetch_assoc();
$smarty->assign('last',$last);
}
$smarty->assign('new',$new);
$smarty->assign('title','Home');
$smarty->display('header.tpl');
$smarty->display('index.tpl');
$smarty->display('footer.tpl');
?>