| Sort of a vague question. What's the purpose of the application? That would really determine what you need to store. Think about a forum user compare to an ecommerce site user. You would want to store different information on the two.
You should also consider not storing the password as plain text but rather run it through either a md5() or password() function in the SQL query so that it's stored encoded. |