The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
Why can't i use number_format twice? - plugins below work... first shows the right format "1,000" etc...
Code:
$query = "SELECT SUM(views), SUM(filesize), count(*) FROM photos"; $totalv = mysql_query($query); list( $totalviews, $diskuse, $totalphotos ) = mysql_fetch_row($totalv); mysql_free_result($totalv); $query = "SELECT count(*) FROM comments"; $totalv = mysql_query($query); list( $posttotal ) = mysql_fetch_row($totalv); mysql_free_result($totalv); // get users from vb $utable = "user"; $query = "SELECT * FROM $utable"; $querytot = mysql_query($query); $totalusers = mysql_num_rows($querytot); $diskspace = $diskuse/1048576; $diskspace = number_format( $diskspace, 1 ); $diskspace = "$diskspace MBytes"; $posttotal = number_format( $posttotal ); $totalphotos = number_format( $totalphotos ); $totalviews = number_format( $totalviews ); $diskuse = number_format( $diskuse ); $totalusers = number_format( $totalusers ); Code:
$querycc = "SELECT SUM(views), SUM(filesize), count(*) FROM pp_photos"; $totalcc = mysql_query($querycc); list( $totalviews2, $diskuse2, $totalphotos2 ) = mysql_fetch_row($totalcc); mysql_free_result($totalcc); $querycc = "SELECT count(*) FROM pp_comments"; $totalcc = mysql_query($querycc); list( $posttotal2 ) = mysql_fetch_row($totalcc); mysql_free_result($totalcc); // get users from vb $utable = "user"; $query = "SELECT * FROM $utable"; $querytot = mysql_query($query); $totalusers = mysql_num_rows($querytot); $diskspace2 = $diskuse2/1048576; $diskspace2 = number_format( $diskspace2, 1 ); $diskspace2 = "$diskspace2 MBytes"; $posttotalcc = number_format( $posttotalcc ); $totalphotoscc = number_format( $totalphotoscc ); $totalviewscc = number_format( $totalviewscc ); $diskusecc = number_format( $diskusecc ); $totalusers = number_format( $totalusers ); -M |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|