'', 'total' => $totalPoints ); // ... and display all foreach ($amounts as $userid => $row) { // Calculate and add percentage to data array $row['percents'] = $row['points'] / $totalPoints * 100; // Load row template $out['rows'] .= loadTemplate('admin_list_user_amounts_row', TRUE, $row); } // END - foreach // Load main template loadTemplate('admin_list_user_amounts', FALSE, $out); } else { // No members found displayMessage('{--ADMIN_LIST_USER_AMOUNTS_404--}'); } // Free result SQL_FREERESULT($result); // [EOF] ?>