PHP Classes

File: killsession.php

Recommend this page to a friend!
  Classes of Mehmet Kidiman   Developbat PHP CRUD   killsession.php   Download  
File: killsession.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Developbat PHP CRUD
Show pages to manage table records using Bootstrap
Author: By
Last change:
Date: 2 years ago
Size: 128 bytes
 

Contents

Class file image Download
<?php
//logout.php
session_start();

session_destroy();

unset(
$_SESSION['selectedtable']);

   
header("location:index.php");