pool/web/yaamp/modules/stats/graph_results_2.php
Tanguy Pruvot bb31cec957 dos2unix all files, we are on linux
trim them, btw... its important to start on a clean base...
2015-07-12 04:40:50 +02:00

19 lines
328 B
PHP

<?php
$algo = user()->getState('yaamp-algo');
$t = time() - 48*60*60;
$stats = getdbolist('db_hashstats', "time>$t and algo=:algo", array(':algo'=>$algo));
echo '[';
foreach($stats as $i=>$n)
{
$e = bitcoinvaluetoa($n->earnings*24);
if($i) echo ',';
$d = date('Y-m-d H:i:s', $n->time);
echo "[\"$d\",$e]";
}
echo ']';