Forum Moderators: coopster
php_value session.save_handler user
php_value auto_prepend_file [php.net] "/path/to/file/with/session/code.PHP [php.net]"
This will save you the work of having to include [php.net] the session code on every page.
Andreas
So you would do a
[url=http://www.php.net/mysql_connect]mysql_connect[/url]($session_save_path); and [url=http://www.php.net/mysql_select_db]mysql_select_db[/url]($session_name);. In your .htaccess file you would then specify the name of the db and table like so:
php_value session.save_path "mydb"
php_value session.name "mytable"
Andreas