diff options
| author | jerome <jerome@xlinfo.fr> | 2023-09-29 06:41:38 +0200 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2023-09-29 06:41:38 +0200 |
| commit | e0f9ee2ee08306f8297f9014d38aad7b06374405 (patch) | |
| tree | c4ff7a95fbbed4366886d5e21a72478915dddf67 /page.php | |
| parent | 0f794e1312da5f67830018ac8f19e7f7c7811a92 (diff) | |
| download | http-e0f9ee2ee08306f8297f9014d38aad7b06374405.tar.gz http-e0f9ee2ee08306f8297f9014d38aad7b06374405.zip | |
Maj
Diffstat (limited to 'page.php')
| -rw-r--r-- | page.php | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -7,13 +7,13 @@ <body> <div> <?php - if (isset($_POST['nom'])) + if (isset($_GET['nom'])) { - echo "<p>Merci ".$_POST['nom']." !</p>"; + echo "<p>Merci ".$_GET['nom']." !</p>"; } - if (isset($_POST['os'])) + if (isset($_GET['os'])) { - echo "<p>Votre OS favori est ".$_POST['os']." !</p>"; + echo "<p>Votre OS favori est ".$_GET['os']." !</p>"; } if(isset($_COOKIE['date'])) { |
