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<EFBFBD>rer la courbe d'<27>volution";
|
|||
|
exit;
|
|||
|
}
|
|||
|
$firephp->log($data,'data');
|
|||
|
?>
|
|||
|
<img src="./graphs/ratios_graph.php?data=<?=urlencode($_REQUEST['data'])?>" />
|