1<?php
2 // Start the session
3 session_start();
4?>
5<!DOCTYPE html>
6<html>
7 <body>
8 <?php
9 // Set session variables
10 $_SESSION["color"]= "blue";
11 $_SESSION["animal"]= "dog";
12 echo "The session variable are set up.";
13 ?>
14 </body>
15</html>