Creating a webpage with user accounts, what do I need to keep in mind?

后端 未结 4 549
一向
一向 2021-01-31 23:17

I am trying to write a website that has user accounts. There isn\'t much sensitive information other than the password and email address. But I don\'t really understand what I\'

4条回答
  •  臣服心动
    2021-01-31 23:51

    You MUST use the MD5 php function for passwords. Simple way of securing it. Also make sure you use strip_tags in php so that someone cant execute commands in your input boxes. Since there isn't any sensetive data i dont think you need to encrypt anything. Just make sure the login system is perfect and the user has no other way of accessing data without logging in..

    Shud suffice for a basic login script..

提交回复
热议问题