PHP Classes

File: session_test.php

Recommend this page to a friend!
  Classes of Miguel Villaseņor   MKCS PHP Support Chat   session_test.php   Download  
File: session_test.php
Role: Example script
Content type: text/plain
Description: Unit test script
Class: MKCS PHP Support Chat
Chat with clients of a support site
Author: By
Last change:
Date: 10 years ago
Size: 515 bytes
 

Contents

Class file image Download
<?php

require_once 'classes/MkSession.php';
$session_class = new MkSession;
session_set_save_handler(array(&$session_class, 'open'),
                         array(&
$session_class, 'close'),
                         array(&
$session_class, 'read'),
                         array(&
$session_class, 'write'),
                         array(&
$session_class, 'destroy'),
                         array(&
$session_class, 'gc'));
session_start();

$_SESSION['user_id']=1;
 
?>

<a href="destroy_session.php">Destroy</a>