<?php
$charset = array('0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f','g','h','i','j','k','l','m',
'n','o','p','q','r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
'P','Q','R','S','T','U','V','W','X','Y','Z',',','.','/','<','>','?',';',':','[',']','{','}','|','!','@','#','&','%','^','*','(',')','-','=','_','+','~');
// A huge array of characters that will be in the password, items can be added and removed at will
$size = sizeof($charset) - 1; // Get the number of items in the array
$password = ""; // To stop possible xss injection
for($i = 0, $i < 8, $i++)
{
$password .= $charset[rand(0, $size)]; // Grab a random character
}
echo "<b>Random Password:</b> $password"; // Output the password
?>Enjoy! >.<













Sign In
Register
Help



MultiQuote





