I have a user table in mysql containing all user data (firstname, surname, address, etc)
But should I store the authentication details in another table (username, password) and link the two tables via a user ID?
Is there much point in this?
Is it more secure?
or does it just add extra coding?