2009-03-30 16:41:42 +00:00
|
|
|
|
<?php
|
2009-04-01 15:42:12 +00:00
|
|
|
|
$data = unserialize(urldecode($_REQUEST['data']));
|
|
|
|
|
if(count($data)<=1){
|
|
|
|
|
print "Les informations sont insuffisantes pour g<>n<EFBFBD>rer la courbe d'<27>volution";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2009-03-31 14:16:03 +00:00
|
|
|
|
if (isset($_REQUEST['unite'])){
|
2009-03-30 16:41:42 +00:00
|
|
|
|
?>
|
2009-03-31 14:16:03 +00:00
|
|
|
|
<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
|
|
|
|
|
}
|
|
|
|
|
?>
|