Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/projects/slutprojekt/

class/
create-categories.php
create-recipe.php
css/
db_content.php
forgot_password.php
include/
login.php
logout.php
recipe-search.php
recipe.php
reset_password.php
signin.php
start.php
tabeller/
verify.php

logout.php

10 lines ASCII Windows (CRLF)
<?php
  session_start
();
  include(
'session-variables.php');

  
session_destroy();

  
header("Location: start.php");
  exit;

?>