Source : lesson_02_var_of_var_2.php |
Résultat |
<?php $janvier = "january" ; $février = "february" ; $mars = "march" ; $avril = "april" ; $mai = "may"; $juin = "june"; $juillet = "july"; $aout = "august" ; $septembre = "september"; $octobre = "october" ; $novembre = "november" ; $decembre = "december" ; $ex = $_REQUEST["sol_file"];//nom de l'exercice pour le form ci-après if (!isset($_POST['myMonth'])) { echo "<b>Entrez un nom de mois en français :"; echo "<form action=../commons/show_solutions.php?exercise=$ex method=post>"; echo "<input type='text' cols=30 name=myMonth> </input>"; echo "<input type='submit' value='valider'></input>"; echo "<input type='reset' value='reset'></form>"; } else { if (empty($_POST['myMonth'])) { echo "Je ne vois rien venir !"; } else { $myMonth = strtolower($_POST['myMonth']); if (isset($$myMonth)) { echo "En anglais : : ".$$myMonth."<br/>"; } else { echo "Ce mois m'est inconnu"; } } } ?>
|
Entrez un nom de mois en français :
|