PHP Classes

File: exit.php

Recommend this page to a friend!
  Classes of Roman Shneer   PHP Web Application Firewall   exit.php   Download  
File: exit.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Web Application Firewall
Block malicious requests using a white list
Author: By
Last change:
Date: 7 years ago
Size: 203 bytes
 

Contents

Class file image Download
<?php
/*
 * script for user logout
 * License: GNU
 * Copyright 2016 WebAppFirewall RomanShneer <romanshneer@gmail.com>
 */
session_start();
unset(
$_SESSION['waf_user']);
header('Location:login.php');
?>