Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/cookie/

cookie.html
ovn_cookie1.php
ovn_cookie2.php

ovn_cookie2.php

17 lines ASCII Windows (CRLF)
<?php
session_start
();
?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
<?php 
$_SESSION
["favcolor"] = "green";
?>
</body>
</html>