[PHP4BETA] session_set_save_handler and php.ini From: al (alewis <email protected>)
Date: 01/18/00

What are the correct values for :
        session.save_handler = files
in the php.ini if you intent to use db storage?

Does anyone have some example code to demo db storage of session info?

function open ($save_path, $session_name) {
}

function close () {
}

function read ($key) {
}

function write ($key, $val) {
}

function destroy ($key)
}

function gc ($maxlifetime) {
}

session_set_save_handler ("open", "close", "read", "write", "destroy", "gc");

thanks,
al

-- 
PHP 4.0 Beta Mailing List <http://www.php.net/version4/>
To unsubscribe, e-mail: php4beta-unsubscribe <email protected>
For additional commands, e-mail: php4beta-help <email protected>
To contact the list administrators, e-mail: php4beta-admin <email protected>