<?php /*!*********************************************************************** ************************************************************************* * \file session-sample.php * * \author Kai Klenovsek * * \date First Step: 2005-07-12 <br> * * \note <br> * \b THE \bBEER-WARE \bLICENSE <br> * As long as you retain this notice you can do whatever you want with <br> * this stuff. If we meet some day, and you think this stuff is worth it, <br> * you can buy me a beer in return. <br> * * \b NOTES: <br> * *************************************************************************** ***************************************************************************/ // First we have to inlcude the phplibex require ("../../phplibex.inc.php"); /* Generate class object */ $session = new session( ); $session->sess_start(); echo $session->sess_getid(); $session->sess_destroy(); ?>