PHP Classes

File: session_destory.php

Recommend this page to a friend!
  Classes of Paul.Ren   Class Session   session_destory.php   Download  
File: session_destory.php
Role: Example script
Content type: text/plain
Description: destory session object
Class: Class Session
User session management and browser support query
Author: By
Last change:
Date: 19 years ago
Size: 102 bytes
 

Contents

Class file image Download
<?
require "./session.class.php";

   
session_start();
   
session_unset();
   
session_destroy();
   
?>