mysql - Storing user passwords/data in database -


To create a database table that saves the user's information (mainly the user and password).

  • What is the best way to havehash and user?
  • Should I also encrypt the user's name?
  • If I have a table of passwords and other user data, can I associate / link them?

    The login problem is not the question, how to associate tables (password tables and data tables for each user)

    You will see the original user table in this way:

      user table ------ - Id Username Password 1 Mike @ # $ 90sDfsa   

    Where password is a hashed version of my password (with)

Comments