Forum » Izdelava spletišč » statistika
statistika
Lucifix ::
A kdo ve kako bi vstavu statistiko iz foruma phpbb2 na prvo stran (index.php).
Npr. da se bi vidla tale slikca bilo kje...
Npr. da se bi vidla tale slikca bilo kje...
Lucifix ::
A pol res noben ne ve kako dati statistiko od foruma recimo na prvo stran (index.php)? Najdu sm par neuporabnih scriptov, ki so sam za v smeti, sam pa tut nism tok "nadarjen" da bi sam enga napisu.
Lucifix ::
hmm... a to sam v forum file (index.php) odprem, pa najdem tisto kodo al je še kej bolj zakompliciranega?
Lucifix ::
A je vsaj ta koda pravilna... ker men noče delat!
function phpbb_fetch_stats()
{
global $db;
$result = array();
$result['total_posts'] = get_db_stat('postcount');
$result['total_users'] = get_db_stat('usercount');
$newest_user = get_db_stat('newestuser');
$result['user_id'] = $newest_user['user_id'];
$result['username'] = $newest_user['username'];
$sql = 'SELECT
session_id
FROM
' . SESSIONS_TABLE . '
WHERE
session_time >= ' . (time() - 300);
$user_online = phpbb_fetch_rows($sql);
$result['user_online'] = count($user_online);
return $result;
} // end func phpbb_fetch_stats
?>
function phpbb_fetch_stats()
{
global $db;
$result = array();
$result['total_posts'] = get_db_stat('postcount');
$result['total_users'] = get_db_stat('usercount');
$newest_user = get_db_stat('newestuser');
$result['user_id'] = $newest_user['user_id'];
$result['username'] = $newest_user['username'];
$sql = 'SELECT
session_id
FROM
' . SESSIONS_TABLE . '
WHERE
session_time >= ' . (time() - 300);
$user_online = phpbb_fetch_rows($sql);
$result['user_online'] = count($user_online);
return $result;
} // end func phpbb_fetch_stats
?>
Vredno ogleda ...
Tema | Ogledi | Zadnje sporočilo | |
---|---|---|---|
Tema | Ogledi | Zadnje sporočilo | |
» | PHP5 ne dela!Oddelek: Omrežja in internet | 2375 (1890) | fizikalac |
» | Statistika foruma?Oddelek: Slo-Tech | 1733 (1069) | Gandalfar |
» | več jezikovOddelek: Izdelava spletišč | 1267 (1163) | overlord_tm |
» | Upravljanje s spletno stranjoOddelek: Izdelava spletišč | 1987 (1768) | MRB0rYS |
» | BB forum na indexOddelek: Izdelava spletišč | 1644 (790) | root987 |