You have a subscription input field on a client’s website and need a method to ensure that any email address and username in the client's database is unique. What should you use to achieve this?
1
Expert's answer
2017-06-09T05:44:38-0400
here some way to do this: 1. When you are creating table in data base you can specify column NAME and EMAIL UNIQUE 2. Use AJAX check data base for valid or not, email and name 3. If you use Django, you may specify this value like unique in your User model
Comments
Leave a comment