Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
require_once ROOT_DIR.'/engine/init.php';
$row = $db->super_query("SELECT COUNT(*) as count FROM " . PREFIX . "_post");
$stats_news = $row['count'];
$row = $db->super_query("SELECT COUNT(*) as count FROM " . PREFIX . "_post where date>NOW() - INTERVAL 1 DAY;");
$stats_daynews = $row['count'];
$row = $db->super_query("SELECT COUNT(*) as count FROM " . PREFIX . "_users");
$stats_users = $row['count'];
$row = $db->super_query("SELECT COUNT(*) as count FROM " . PREFIX . "_users where FROM_UNIXTIME(reg_date) > NOW() - INTERVAL 1 DAY ;");
$stats_newusers = $row['count'];
$tpl->load_template('main.tpl');
$tpl->set('{allnews}', $stats_news);
$tpl->set('{allusers}', $stats_users);
$tpl->set('{todaynews}', $stats_daynews);
$tpl->set('{todayusers}', $stats_newusers);