I've written a session class which uses the session_save_handler function (http://php.nederland.net/manual/function.session-set-save-handler.php) to customize the session operation to work with my MySQL DB...
But it won't work, when I put the functions outside the class it works. How can you get this function to work within a class?
Anyone?
I tried this with no luck:
session_set_save_handler("\$this->open", "\$this->close", "\$this->read", "\$this->write", "\$this->destroy", "\$this->gc");