Source de: form_get.php

Retour
<?PHP
//Code servant a afficher le source.
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/sga.css\">";
Echo 
"<A href=\"show_source.php?script=form_get.php\">Voir source de form_get.php</A><br>";
Echo 
"<A href=\"show_source.php?script=header.inc\">Voir source de header.inc</A><br>";
Echo 
"<A href=\"show_source.php?script=form_get_resultat.php\">Voir source de form_get_resultat.php</A><br><br>";

//Code de l'exercice.
?>
<html>
<head> <title>Exemple de formulaire</title>
<link rel="stylesheet" href="../css/sga.css" type="text/css" />
</head>
<body>
<form action="form_get_resultat.php" method="GET">
<H3>Utilisation de la methode GET</H3>
<? include("header.inc"); ?>
<HR WIDTH="50%">
  <DIV align="center" ALIGNE=CENTER> Merci de remplir ce formulaire<br>
    <br>
    Nom&nbsp;:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <input type="text" size="30" maxlength="50" name="nom" />
    <br>
    Prénom&nbsp;:&nbsp;
    <input type="text" size="30" maxlength="50" name="prenom" />
    <br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <input type="submit" value="Envoyer" />
  </DIV>
<HR WIDTH="50%">
</form>
</body>
</html>

Traité le : 27/08/2026 10:08:19