16 lines
424 B
PHP
16 lines
424 B
PHP
<?php
|
|
$data = unserialize(urldecode($_REQUEST['data']));
|
|
if(count($data)<=1){
|
|
print "Les informations sont insuffisantes pour générer la courbe d'évolution";
|
|
exit;
|
|
}
|
|
if (isset($_REQUEST['unite'])){
|
|
?>
|
|
<img src="./graphs/synthese_graph.php?data=<?=urlencode($_REQUEST['data'])?>&unite=<?=$_REQUEST['unite']?>" />
|
|
<?php
|
|
}else{
|
|
?>
|
|
<img src="./graphs/synthese_graph.php?data=<?=urlencode($_REQUEST['data'])?>" />
|
|
<?php
|
|
}
|
|
?>
|