Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] i belive sql querry in php its wrong

Newbie Spellweaver
Joined
Sep 11, 2018
Messages
29
Reaction score
1
Can anyone with good heart can tell me if this is ok?

this is what i have to show in my website how manny accounts are made , but still nothing shows up

PS : ranking its working ( i have all characters there )

Code:
//Estadisticas Usuarios$statistics_accounts=mssql_query("SELECT count(*) memb___id FROM MuOnline.dbo.MEMB_INFO");while($row=mssql_fetch_assoc($statistics_accounts)){$core['accounts_reults']=$row['memb___id'];

i can provide the file if need more info..

Thanks in advance guys
 
Junior Spellweaver
Joined
Aug 7, 2010
Messages
137
Reaction score
138
I'm not sure if is the same than MySQL, but it would be something like this:

SELECT count(memb___id) FROM MuOnline.dbo.MEMB_INFO

Or

SELECT count(*) FROM MuOnline.dbo.MEMB_INFO
 
Upvote 0
Back
Top