mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-07-22 06:40:32 +00:00
first commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
$totalDonate = trim(file_get_contents($g_config['donateTotal']));
|
||||
|
||||
$lines = file($g_config['donateTransactions']);
|
||||
$donates = 0;
|
||||
$lastDonate = 0;
|
||||
|
||||
foreach ($lines as $line)
|
||||
{
|
||||
$donates = $donates + $line;
|
||||
$lastDonate = $line;
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user