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.
<?
function p_online()
{
$result=mysql_query("SELECT COUNT(*) AS `Online` FROM `users` WHERE `LastActive`>".(time()-$GLOBALS['config']['Timeout']));
$row=mysql_fetch_array($result);
return $row['Online'];
}
function p_registered()
{
$result=mysql_query("SELECT COUNT(*) AS `Registered` FROM `users`");
$row=mysql_fetch_array($result);
return $row['Registered'];
}
?>