Logo  

CS479/579 - Web Programming II

Displaying ./code/PHP_Sessions/three.php

<?php
  session_start();
  session_destroy();
?>
<!DOCTYPE html>
<html>
<head>
 <title> PHP sessions </title>
</head>
<body>
 Session reset
 <a href='start.php'> Go back to start </a>
</body>
</html>