?' ) , 0 , 15 ); $default = 'AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890!@/#$%^&*()_-+=[]{};\':",./<>?'; // setting up the upper case letters $upper = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; $upper_easy = 'ABCDEFGHJKMNPQRSTUVWXYZ'; // setting up the lower case letters $lower = 'abcdefghijklmnopqrstuvwxyz'; $lower_easy = 'abcdefghjkmnpqrstuvwxyz'; // setting up the numbers 0 to 9 $number = '1234567890'; $number_easy = '23456789'; // setting up the symbols $symbol = '!@#$%^&*()_+-=[]{};\':",.<>/?'; $symbol_easy = '!@#$%^&*()_+-=[]{};\':",.<>/?'; //create variable to generate the new password for the customer $new_password = ''; $str = ''; ?>

Random Password Generator

Here is a Random password that is 15 characters long using uppercase, lowercase, numbers, and symbols.

<?php echo $password_default; ?>

<?php echo substr( str_shuffle( $default ), 0 , $_POST['length'] ); ?>

tags so that the special symbols will output ?>

<?php echo substr( str_shuffle( $str ), 0 , $length ); ?>

tags so that the special symbols will output ?>

<?php echo substr( str_shuffle( $str ), 0 , $length ); ?>

The length of your password
( 1 to 50 )
Use Uppercase letters />
Use Lowercase letters />
Use Numbers />
Use Symbols />
Remove hard to read characters
( I i L l O o 1 0 )
/>


source