Created
July 31, 2019 20:20
-
-
Save antxd/7ba8491c229a28467746c892dc2df06f to your computer and use it in GitHub Desktop.
Simple password_hash generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(!empty($_GET['pass'])){ | |
echo password_hash($_GET['pass'], PASSWORD_DEFAULT); | |
} | |
?> | |
<form method="GET"> | |
<input type="text" name="pass"><button type="submit">CREAR</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment