Forum Moderators: coopster
I've been working with a starter script found at [evolt.org...] . Basically my plan is for clients to be able to enter login information, which would then draw their corresponding private db information from a "master" db full of login information for all the private dbs. The script would then create a session with that information, after it connected to their private DB.
I hope this makes sense, it's a little difficult to explain. Does anybody have any ideas for a general procedure in which I could do this? Or is there a much easier, better solution available? Thanks!
you could use this to connect to another website's db
$link = mysql_connect('www.yourwebsite.com', 'username', 'password);
so first the user would log into the "master" db to verify accont and retrieve info. then you can use that info to connect to another db. havent tried this myself, but it seems logical.