'J',
'Fervier' => 'F',
'Mars' => 'M',
'Avril' => 'A');
if(isset($_POST['conges']))
{
// Vérifier si le choix posté par la variable '$_POST' corresponds à un élément du tableau
if (! array_key_exists($_POST['conges'], $choix))
{
echo "Aucun congé n'est attribué pour le mois choisi";
}
else
{
echo "Votre choix à été enregistré";
}
}
?>