Changeset 40 for branches/patSession2/examples/example_basic_restart.php
- Timestamp:
- 01/18/06 09:20:02 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/patSession2/examples/example_basic_restart.php
r34 r40 12 12 * @license LGPL 13 13 **/ 14 error_reporting( E_ALL ); 14 // load error handler 15 include_once './_error.php'; 15 16 16 // include error-manager17 include_once '../../patError/patErrorManager.php';18 //patErrorManager::setErrorHandling( E_ERROR, 'verbose' );19 20 17 // include factory/loader 21 18 include_once '../patSession.php'; … … 42 39 43 40 echo '<pre>'; 44 print_r( $sess->_sess );41 echo $sess; 45 42 echo '</pre>'; 46 43
