Show
Ignore:
Timestamp:
09/05/06 23:00:01 (2 years ago)
Author:
gerd
Message:

- support for autopackage
- added feature: custom driver

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/examples/example_spl_array.php

    r46 r49  
    99 *  
    1010 * @author gERD Schaufelberger <gerd@php-tools.net> 
    11  * @copyright 2004 http://www.php-tools.net 
     11 * @copyright 2004-2006 http://www.php-tools.net 
    1212 * @license LGPL 
    1313 **/ 
     
    2626         
    2727        // see wheter the started session is new 
    28         if( $sess->isNew() ) { 
     28        if( $sess->new ) { 
    2929                echo '<b>Hurray!</b> A new session was born! :-)<br />'; 
    3030        } 
     
    5151        // get query string 
    5252        echo '<br />'; 
    53         $queryString    =       $sess->getQueryString()
     53        $queryString    =       $sess->SID
    5454        echo '- <a href="' . $_SERVER['PHP_SELF'] . '?' . $queryString . '" title="'. $_SERVER['PHP_SELF'] . '?' . $queryString .'">Continue this session</a> <br />'; 
    5555        echo '- <a href="' . $_SERVER['PHP_SELF'] . '" title="'. $_SERVER['PHP_SELF'] . '">Start over</a> (make sure, that you don\'t send cookies!) <br />';