2
Gentlemen, good afternoon, sir. I would like to ask what best practice you use to capture the data of a logged-in user in a web application with database.
For example: Assuming I created a site where the user registers, logs in with his email and password, and when logged in to a screen with a panel with a series of options, one of them is able to change your registration information. How do I save and capture these values assuming I use Mysql database? Session Storage and encryption?
My goal of creating a secure website that guarantees data integrity.
Hello Rafael. I use PHP as backend and so far have used a local database to store the data in table.
– Codeman