Browse Source

More work

pull/12/head
falkTX 7 years ago
parent
commit
4e0528ea86
1 changed files with 16 additions and 8 deletions
  1. +16
    -8
      DonationsStats.php

+ 16
- 8
DonationsStats.php View File

@@ -8,6 +8,10 @@ include_once("includes/header.php");
require "donate/config.php"; require "donate/config.php";
require "donate/connect.php"; require "donate/connect.php";


global $biggest_donation_date;
global $biggest_donation_value;
global $total_ever;

$biggest_donation_date = "Unknown"; $biggest_donation_date = "Unknown";
$biggest_donation_value = 0.0; $biggest_donation_value = 0.0;
$total_ever = 0.0; $total_ever = 0.0;
@@ -21,6 +25,10 @@ if ($db_link === false) {
return; return;
} }


global $biggest_donation_date;
global $biggest_donation_value;
global $total_ever;

$amount = 0.0; $amount = 0.0;


$max_month = 0.0; $max_month = 0.0;
@@ -50,14 +58,14 @@ $total_ever += $total_year;
echo '<tr>'; echo '<tr>';
echo ' <td>' . $year . '</td>'; echo ' <td>' . $year . '</td>';
echo ' <td>' . $donation_count . '</td>'; echo ' <td>' . $donation_count . '</td>';
echo ' <td>' . $total_year . '&euro;</td>';
echo ' <td>' . number_format($total_year, 2) . '&euro;</td>';
if ($donation_count > 0.0) { if ($donation_count > 0.0) {
echo ' <td>' . ($total_year/$donation_count) . '&euro;</td>';
echo ' <td>' . number_format($total_year/$donation_count, 2) . '&euro;</td>';
} else { } else {
echo ' <td>0&euro;</td>'; echo ' <td>0&euro;</td>';
} }
echo ' <td>' . ($total_year/12.0) . '&euro;</td>';
echo ' <td>' . $max_month . '&euro;</td>';
echo ' <td>' . number_format($total_year/12.0, 2) . '&euro;</td>';
echo ' <td>' . number_format($max_month, 2) . '&euro;</td>';
echo '</tr>'; echo '</tr>';


} }
@@ -72,8 +80,8 @@ echo '</tr>';


<p> <p>
This page contain statistics regarding donations made to the KXStudio project over time.<br/> This page contain statistics regarding donations made to the KXStudio project over time.<br/>
So far the KXStudio project has received <?php echo $total_ever; ?>&euro; in donations.<br/>
The biggest donation ever made was on <?php echo $biggest_donation_date; ?>, with a value of <?php echo $biggest_donation_value; ?>&euro;.<br/>
So far the KXStudio project has received <?php echo number_format($total_ever, 2); ?>&euro; in donations.<br/>
The biggest donation ever made was on <?php echo $biggest_donation_date; ?>, with a value of <?php echo number_format($biggest_donation_value, 2); ?>&euro;.<br/>
Thank you very much for your generosity! Thank you very much for your generosity!
</p> </p>


@@ -81,7 +89,7 @@ echo '</tr>';
<table style="text-align:center;"> <table style="text-align:center;">
<tr> <tr>
<td>&nbsp;Year&nbsp;</td> <td>&nbsp;Year&nbsp;</td>
<td>&nbsp;Donations count&nbsp;</td>
<td>&nbsp;Donation count&nbsp;</td>
<td>&nbsp;Total received&nbsp;</td> <td>&nbsp;Total received&nbsp;</td>
<td>&nbsp;Average per donation&nbsp;</td> <td>&nbsp;Average per donation&nbsp;</td>
<td>&nbsp;Average per month&nbsp;</td> <td>&nbsp;Average per month&nbsp;</td>
@@ -89,7 +97,7 @@ echo '</tr>';
</tr> </tr>
<?php <?php


for ($year = strftime("%Y"); $year >= "2014"; $year -= 1) {
for ($year = strftime("%Y"); $year >= "2012"; $year -= 1) {
print_donation_year($year); print_donation_year($year);
} }




Loading…
Cancel
Save