extranet/www/pages/synthese_dgraph.php

16 lines
424 B
PHP
Raw Normal View History

2009-03-30 16:41:42 +00:00
<?php
$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
}
?>