Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

Webserver1/Ovningar/Cookie/

cookie1.php
cookie2.php
cookie3login.php
cookie3secret.php
cookie4.php
cookie5.php

cookie3secret.php

23 lines UTF-8 Windows (CRLF)
<?php
session_start
();
?>
<!DOCTYPE html>
<html lang="sv">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Jag saknar mina kakor</title>
</head>

<body>
  <h2>Välkommen till den superhemliga sidan!</h2>
  <p>Här är en apa som belöning:</p>
  <img src="https://bealepark.org.uk/wp-content/uploads/2024/08/Guianan-Squirrel-Monkey-Slider-1.webp" width="200px" alt="">
  <form action="./cookie3login.php" method="post">
    <input type="hidden" name="delete">
    <input type="submit" value="Tillbaka till verkligheten">
  </form>
</body>

</html>