What kindof UserDB are you looking for? I created one at my previous job. It is pretty specific to that job, but I do have some experience with it...
Hi DMT, I was thinking about a mysql database with some base user info and then the flexibilty to associate variables to it in a different table.
table 1 might have: userid# name username password email
table 2 might have: userid# siteid# variable name variable value
With a setup like this it would be possible for a user to login and fetch all of the user's table2 vars into a session and then use them from there.
I must admit, I'm not entirely sure if this would work or what is the best way to implement it in MySQL is... so I'm very eager for your help/advice.
-Ironstorm
Log in to post a comment.
What kindof UserDB are you looking for? I created one
at my previous job. It is pretty specific to that
job, but I do have some experience with it...
Hi DMT,
I was thinking about a mysql database with some base user info
and then the flexibilty to associate variables to it in a different table.
table 1 might have:
userid#
name
username
password
email
table 2 might have:
userid#
siteid#
variable name
variable value
With a setup like this it would be possible for a user to login
and fetch all of the user's table2 vars into a session and then
use them from there.
I must admit, I'm not entirely sure if this would work or what
is the best way to implement it in MySQL is... so I'm very
eager for your help/advice.
-Ironstorm