L2 Info : PHP et Programmation Web
 
◃  Ch. 7 Gestion des formulaires  ▹
 

Gestion des champs textuels (2/2)

  • Source de coursPHP40.php :
    <html>
     <body>
    <?php
        echo('QUERY_STRING: ');
        echo($_SERVER['QUERY_STRING']);
        echo("<br />\n");
        echo('Nom: '.$_GET['nom']." <br />\n");
        echo('Prenom: '.$_GET['prenom']." <br/> \n");
        echo('Envoi: '.$_GET['envoi']." <br /> \n");
    ?>
    </body>
     </html>
  • Résultat :
    QUERY_STRING: nom=Ripley&prenom=Hellen&envoi=Clic
    Nom : Ripley
    Prenom : Hellen
    Envoi : Clic