Ok I didn't know where these pertained to best so I just stuck them all in the coding forum.
I have a couple of questions kind of related and was just wondering if someone out there has the knoweledge to answer them. I guarantee that someone has the answers but it is whether or not they are willing to help, so I thank you ahead of time.
question1:
I currently have the password of each user encrypted in my database using
md5();
Is it necessary to encrypt the username as well for increased security or is it pointless to do that?
question2:
How would I go about creating separate databases based on each user that registers for their unique information?
Also, is it better to do that than to create one database with multiple tables? I dont see what you would need that for so Im guessing multiple databases but I wasnt sure.
question3:
Also how do I change the data of the page based on username. Like i understand that
members.php?=$username
would be the information in the same row as $username, but how do you just create a page out of no where.
I have the page members.php and inside the page it pulls information out of a database based on the username/password. Does php recognize it and put that syntax in the url automatically or is there something I am missing. Thanks. Help is greatly appreciated.