2019-01-30 16:18:44 +01:00
|
|
|
<?php
|
2020-09-17 15:14:03 +02:00
|
|
|
$data = (int) get_parameter('data');
|
|
|
|
$stacked = db_get_sql('select stacked from tgraph where id_graph = '.$data);
|
|
|
|
$num_items = db_get_sql('select count(*) from tgraph_source where id_graph = '.$data);
|
2017-03-22 10:10:56 +01:00
|
|
|
echo "$stacked,$num_items";
|