<?php
function randomPassword($length) {
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_!@#$%^&*(){}[]|~';
...
PHP On Random password
by Just Another Programmer,
December 19, 2008 05:10
<?php
function randomPassword($length) {
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_!@#$%^&*(){}[]|~';
...
This one uses special chara...