pool/web/yaamp/modules/site/results/graph_profit_results.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

25 lines
285 B
PHP

<?php
$percent = 16;
$step = 15*60;
$t = time() - 24*60*60;
$stats = getdbolist('db_stats', "time>$t order by time");
echo '[[';
foreach($stats as $i=>$n)
{
$m = round($n->profit, 8);
if($i) echo ',';
$d = date('Y-m-d H:i:s', $n->time);
echo "[\"$d\",$m]";
}
echo ']]';