PHP Classes

File: logout.php

Recommend this page to a friend!
  Classes of Nguyen Hung Cuong   PHP Login without Database   logout.php   Download  
File: logout.php
Role: Application script
Content type: text/plain
Description: Logout script
Class: PHP Login without Database
Register and authenticate users stored in a script
Author: By
Last change:
Date: 2 years ago
Size: 135 bytes
 

Contents

Class file image Download
<?php

//@include 'config.php';

session_start();
session_unset();
session_destroy();

header('location:login_form.php');

?>