mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
6 lines
235 B
PHP
6 lines
235 B
PHP
<?php
|
|
$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);
|
|
echo "$stacked,$num_items";
|