Posts by Eric Paiva • 13 points
2 posts
-
-1
votes2
answers40
viewsQ: Reset Divs id by numbers in order
I am quite layman in Javascript and jQuery, and I needed to change the id of the Divs in numerical order. For example: <div id="1"></div> <div id="2"></div> <div…
-
-1
votes1
answer552
viewsA: How to encrypt the password in the registration of a new user and how to recognize it in the login of this user?
Take the field and use the encryption you used to send it to SELECT ex in the register you used md5 in $_POST['password']; thus md5($_POST['password']); at the time of logging in you do the same…