Thomas P
04-04-2008, 03:32 PM
Hello,
I use the following script to show a counter in FORUMHOME or wherever I want:
// ### Counter Hack by J. Schmidt #################################
$cquery = "SELECT A.title, A.data FROM ".TABLE_PREFIX."datastore AS A WHERE title = 'total_hits' OR title = 'daily_hits'";
$counter = $db->query_read($cquery);
while ($res = $db->fetch_array($counter)) {
if($res['title'] == "total_hits") {
$total_hits = $res['data'];
} else if($res['title'] == "daily_hits") {
$daily_hits = $res['data'];
}
}
$cquery = "UPDATE ".TABLE_PREFIX."datastore SET data = '".++$total_hits."' WHERE title = 'total_hits'";
$counter = $db->query_write($cquery);
$cquery = "UPDATE ".TABLE_PREFIX."datastore SET data = '".++$daily_hits."' WHERE title = 'daily_hits'";
$counter = $db->query_write($cquery);
// ### Counter Hack END #################################################
Now I just insert $daily_hits into forumhome and I am all set.
Just one thing: The numbers are shown like this: 21458754 without a "." to mark a thousand - how can I change this? :(
Thanks,
-Tom
I use the following script to show a counter in FORUMHOME or wherever I want:
// ### Counter Hack by J. Schmidt #################################
$cquery = "SELECT A.title, A.data FROM ".TABLE_PREFIX."datastore AS A WHERE title = 'total_hits' OR title = 'daily_hits'";
$counter = $db->query_read($cquery);
while ($res = $db->fetch_array($counter)) {
if($res['title'] == "total_hits") {
$total_hits = $res['data'];
} else if($res['title'] == "daily_hits") {
$daily_hits = $res['data'];
}
}
$cquery = "UPDATE ".TABLE_PREFIX."datastore SET data = '".++$total_hits."' WHERE title = 'total_hits'";
$counter = $db->query_write($cquery);
$cquery = "UPDATE ".TABLE_PREFIX."datastore SET data = '".++$daily_hits."' WHERE title = 'daily_hits'";
$counter = $db->query_write($cquery);
// ### Counter Hack END #################################################
Now I just insert $daily_hits into forumhome and I am all set.
Just one thing: The numbers are shown like this: 21458754 without a "." to mark a thousand - how can I change this? :(
Thanks,
-Tom