diff options
| author | jerome <jerome@xlinfo.fr> | 2025-09-03 17:28:32 +0200 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2025-09-03 17:28:32 +0200 |
| commit | ca7a1a2a894b1d0b02109f3c50934d333a27742a (patch) | |
| tree | 37de2a6e576f88a49003fd6918f69da05fa5d27f /www | |
| parent | 7f756990002dc0ec7b8ac026e1b2a40ebba819a3 (diff) | |
| download | http-ca7a1a2a894b1d0b02109f3c50934d333a27742a.tar.gz http-ca7a1a2a894b1d0b02109f3c50934d333a27742a.zip | |
Dockerfile
Diffstat (limited to 'www')
| -rw-r--r-- | www/page.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/page.php b/www/page.php index e93b279..e7ac2f2 100644 --- a/www/page.php +++ b/www/page.php @@ -9,13 +9,13 @@ <?php if (isset($_REQUEST['username'])) { - echo "<p>Merci ".$_REQUEST['username']." !</p>"; + echo "<p>Merci ".$_REQUEST['username']." !</p>"; } - if (isset($_REQUEST['os'])) + if (isset($_REQUEST['os'])) { - echo "<p>Votre OS favori est ".$_REQUEST['os']." !</p>"; + echo "<p>Votre OS favori est ".$_REQUEST['os']." !</p>"; } - if(isset($_COOKIE['date'])) + if(isset($_COOKIE['date'])) { echo "<p>Nous sommes le ".date("Y-m-d H:i:s",$_COOKIE['date'])."</p>"; } |
