|
$query = "SELECT SUM(views), SUM(filesize), count(*) FROM {$Globals['pp_db_prefix']}photos";
$totalv = ppmysql_query($query,$link);
list( $totalviews, $diskuse, $totalphotos ) = mysql_fetch_row($totalv);
ppmysql_free_result($totalv);
The query that shows how many photos is simply a count of how many photo rows in the mysql table so yes a photo is counted once when uploaded to multiple cats
|