diff --git a/htdocs/public/dons/therm.php b/htdocs/public/dons/therm.php index d3196f70fa6..efb0149c233 100644 --- a/htdocs/public/dons/therm.php +++ b/htdocs/public/dons/therm.php @@ -25,10 +25,46 @@ if (file_exists ($thermlib)) { include($thermlib); + $posten_file = "/var/www/www.eucd.info/htdocs/posten.txt"; + $totaal_file = "/var/www/www.eucd.info/htdocs/totaal.txt"; + + /* * Read Values */ + if (file_exists ($posten_file)) + { + if (file_exists ($totaal_file)) + { + + /* lees posten uit file */ + $fp = fopen($posten_file, 'r' ); + + + if ($fp) + { + $post_donaties = fgets( $fp, 10 ); + $post_sponsoring = fgets( $fp, 10 ); + $post_intent = fgets( $fp, 10 ); + fclose( $fp ); + } + + /* lees posten uit file */ + $fp = fopen( $totaal_file, 'r' ); + if ($fp) + { + $totaal_ontvangen = fgets( $fp, 10 ); + $totaal_pending = fgets( $fp, 10 ); + fclose( $fp ); + } + } + } + + /* + * Graph thermometer + */ + $conf = new Conf(); $db = new Db(); $don = new Don($db);