Skip to content

Instantly share code, notes, and snippets.

@antxd
Created July 31, 2019 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antxd/7ba8491c229a28467746c892dc2df06f to your computer and use it in GitHub Desktop.
Save antxd/7ba8491c229a28467746c892dc2df06f to your computer and use it in GitHub Desktop.
Simple password_hash generator
<?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