Your question to me (why do I want to call it myself...) tells me I don't understand how it works yet.
I want to put user information in a database using a registration form.
I want registered users to be able to access their information from that database, per form element or div, with ajax, using an internal secure page (not the registration page) when they log in after registration.
I'm still trying to figure out if session_set_save_handler() makes this easier or not.
I'm learning javascript, php, html at the same time. Gotta learn it first, before I can answer these questions. No way around the learning curve. I'm learning a little php, then some javascript, etc.
The entire coding "picture" is coming together. There are still some gaps.
session_set_save_handler() is one of them.
I know it is php code that communicates with the database, but I'm still not sure what it does that's so helpful that can only be done using it.
What does this function do that can't be done with session_start(), the
$_SESSION array, mysql_query(), mysql_fetch_assoc(), and placing
$_SESSION['user data'} wherever it needs to be in the page sent to the browser?
I know these functions are necessary to do the job, that's why they are placed inside session_set_save_handler().
What happens when they are placed inside this function that doesn't happen when this handler function is not used?
The answer to this question is what I need to understand before I can really understand how this function works.
Then I'll know if I should use it. Thanks for taking the time to read all of this.