2009-03-30 16:41:42 +00:00
|
|
|
<?php
|
2009-06-29 09:07:51 +00:00
|
|
|
$f = $_REQUEST['f'];
|
|
|
|
if($f===FALSE){
|
2010-02-10 17:27:03 +00:00
|
|
|
print "Erreur lors de la génération de l'image";
|
2009-06-29 09:07:51 +00:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
if(is_numeric($f) && $f==0){
|
2010-02-10 17:27:03 +00:00
|
|
|
print "Les informations sont insuffisantes pour générer la courbe d'évolution";
|
2009-04-01 15:42:12 +00:00
|
|
|
exit;
|
|
|
|
}
|
2009-03-30 16:41:42 +00:00
|
|
|
?>
|
2009-06-29 09:07:51 +00:00
|
|
|
<img src="./image.php?q=<?=$f?>" />
|