-1

I need hide password in displaying table so how to hide this data in PHP, JavaScript

Here Is My Co: de https://docs.google.com/document/d/1fboD5egyDld7T9qvMcRZoj7YAKtoPeVp3pYs2u8Q1Nw/edit?usp=sharing

enter image description here

Hardik Chapla
  • 435
  • 6
  • 26

1 Answers1

2

The usual practice would be to store an encrypted password into your database, and when a user logs in, you encrypt the entered password and test the result against the encrypted password stored in the database.

Further reading on php encryption can be found here: Secure hash and salt for PHP passwords

Community
  • 1
  • 1
Ian S
  • 64
  • 3