Previous Thread
Next Thread
Print Thread
Rate Thread
#285377 05/20/2005 10:25 AM
Joined: Jun 2003
Posts: 88
Power User
Power User
Offline
Joined: Jun 2003
Posts: 88
My friend is redoing our main page and he is trying to query the number of registered users. The forums and control panel say 1912 but when he queries he gets like 2900...I have deleted many inactive users over the years so what query would he use to get the active user number that matches the control panel number? I am using 6.51

Sponsored Links
BOO_YAAAAAAA #285378 05/20/2005 10:36 AM
Joined: May 2001
Posts: 550
Code Monkey
Code Monkey
Offline
Joined: May 2001
Posts: 550
SELECT count(*) FROM `w3t_Users

domain123 #285379 05/20/2005 2:45 PM
Joined: Jun 2003
Posts: 88
Power User
Power User
Offline
Joined: Jun 2003
Posts: 88
//user number
$result = @mysql_query("SELECT count(*) FROM w3t_Users");
$row = mysql_fetch_array($result);
$unum = $row["count(*)"];
//user name
$result = @mysql_query("SELECT U_Username FROM w3t_Users ORDER BY U_Number DESC");
$row = mysql_fetch_array($result);
$name = $row["U_Username"];
//print results
print "$unum";
echo (' Registered Users. Welcome to our newest member, ');
print "$name";

that is still giving me the wrong user name, it says in the sql that the U_Number field is auto inc... but the unmoded index page shows a totally dif. username for the latest user... what am i doing wrong?

BOO_YAAAAAAA #285380 05/20/2005 7:28 PM
Joined: Oct 2003
Posts: 2,305
Old Hand
Old Hand
Joined: Oct 2003
Posts: 2,305
try this

//user number
$result = @mysql_query("SELECT count(*) FROM w3t_Users");
$row = mysql_fetch_array($result);
$unum = $row["count(*)"];
//user name
$result = @mysql_query("SELECT U_Username FROM w3t_Users ORDER BY U_Registered DESC");
$row = mysql_fetch_array($result);
$name = $row["U_Username"];
//print results
print "$unum";
echo (' Registered Users. Welcome to our newest member, ');
print "$name";


Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
isaac
isaac
California
Posts: 1,157
Joined: July 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)