PHP Classes

File: demo/logout.php

Recommend this page to a friend!
  Classes of Damian Stepien   Simple PHP User Authentication   demo/logout.php   Download  
File: demo/logout.php
Role: Example script
Content type: text/plain
Description: Example - logout.php
Class: Simple PHP User Authentication
Authenticate users with records in a MySQL table
Author: By
Last change:
Date: 10 years ago
Size: 125 bytes
 

Contents

Class file image Download
<?php
include '../userauth.class.php';
$auth = new UserAuthentication();

$auth->logOut();

header("Location:index.php");
?>