Hello,
When writing PHP session data to a database and using the session-set-save-handler() function you must write your own callback functions for each parameter. The first parameter of the open() function is the save path. In the tutorials I've seen they've provided a variable like "$save_path" like so:
function open($save_path, $session_name)
{
...code...
return(true);
}
I don't know what I'm supposed to have as this first parameter. A variable that has the path to my DB as it's value?
Thank you for your time.