PDA

View Full Version : [addon] users registered today


ericgtr
12-13-2004, 06:39 PM
This will add a "Registered Today" (actually in the last 24 hours) to your Stats box.

Add a phrase:
Global
Varname: reged_today
Text: Registered today

In the adv_portal_stats template:

Find:

$vbphrase[top_poster]: <a href="$vboptions[bburl]/member.php?$session[sessionurl]u=$topposter[userid]">$topposter[username]</a> ($topposter[posts])<br />


Below add:

$vbphrase[reged_today]: ($newusers[count])<br />


Open modules/stats.php

Find:

$newuserid = $userstats['newuserid'];


Add below:

$newusers = $DB_site->query_first('
SELECT COUNT(*) AS count
FROM ' . TABLE_PREFIX . 'user
WHERE joindate >= "' . strtotime("-1day") . '"
');
$newmembers = number_format($newusers['count']);


Thanks a lot to KW802 for help with the query.

trackpads
12-13-2004, 09:19 PM
Very nice! Thanks!

Our Sponsors
 

chet
01-11-2005, 10:46 AM
Could this module be altered to show by name the last x amount of registered users, so where your screen shot shows welcome to our newest member, then shows the last registered user, I would like mine to show the last 5 or show members

Thanks

Chet

Mokster
03-12-2005, 05:11 PM
Could this module be altered to show by name the last x amount of registered users, so where your screen shot shows welcome to our newest member, then shows the last registered user, I would like mine to show the last 5 or show members

Thanks

Chet

I would like to see this as well...

Show the names of people that registered in the last 24 hours...can anyone do this?

Our Sponsors
 

MP3
05-17-2005, 04:12 AM
thanks

KIX
08-05-2005, 01:59 PM
Very good thanks