9 lines
287 B
PHP
9 lines
287 B
PHP
<?php
|
|
$data = unserialize(urldecode($_REQUEST['data']));
|
|
if(count($data['data'])<=1){
|
|
print "Les informations sont insuffisantes pour générer la courbe d'évolution";
|
|
exit;
|
|
}
|
|
$firephp->log($data,'data');
|
|
?>
|
|
<img src="./graphs/ratios_graph.php?data=<?=urlencode($_REQUEST['data'])?>" />
|