summaryrefslogtreecommitdiff
path: root/page.php
diff options
context:
space:
mode:
Diffstat (limited to 'page.php')
-rw-r--r--page.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/page.php b/page.php
deleted file mode 100644
index 87acfc5..0000000
--- a/page.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html lang="fr">
- <head>
- <meta charset="utf-8" />
- <title>Le meilleur OS</title>
- </head>
- <body>
- <div>
-<?php
-//if (isset($_GET['password']) && $_GET['password'] == "secret"){
- if (isset($_GET['username']))
- {
- echo "<p>Merci ".$_GET['username']." !</p>";
- }
- if (isset($_GET['os']))
- {
- echo "<p>Votre OS favori est ".$_GET['os']." !</p>";
- }
- if(isset($_COOKIE['date']))
- {
- echo "<p>Nous sommes le ".date("Y-m-d H:i:s",$_COOKIE['date'])."</p>";
- }
-/*}
-else {
- echo "Mauvais mot de passe";
-}*/
-?>
- </div>
-</body>
-</html>