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
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
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