12 lines
259 B
PHP
12 lines
259 B
PHP
|
<?php
|
|||
|
$f = $_REQUEST['f'];
|
|||
|
if($f===FALSE){
|
|||
|
print "Erreur lors de la g<>n<EFBFBD>ration de l'image";
|
|||
|
exit;
|
|||
|
}
|
|||
|
if(is_numeric($f) && $f==0){
|
|||
|
print "Les informations sont insuffisantes pour g<>n<EFBFBD>rer la courbe d'<27>volution";
|
|||
|
exit;
|
|||
|
}
|
|||
|
?>
|
|||
|
<img src="./image.php?q=<?=$f?>" />
|