Random Password Generate in PHP

In this tutorial i am create Random Password Generate in php so you can choose secure password create .

<?php


$string = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890~!@#$%^&*()_+{}<>?";

echo substr(str_shuffle($string), 0, 12); //you can add start to end length from the password

//12 is minimum 12 letter password

?>

Comments

Popular posts from this blog

Shutdown Computer With Funny Reason

Hidden Attribute in javascript

Draw animated loading spinner canvas in Javascript