extranet/www/pages/synthese_dgraph.php
2009-04-01 15:42:12 +00:00

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
}
?>