This is an very simple PHP script to generate a random password.
You can test the script here [
LINK]!
<?php// Random Password Gen v1.00// Coded By: BlizzIce 6.11.2011// http://freedomhackers.net/function createRandomPassword() { $chars = "abcdefghijkmnopqrstuvwxyz023456789"; srand((double)microtime()*1000000); $i = 0; $pass = '' ; while ($i <= 7) { $num = rand() % 33; $tmp = substr($chars, $num, 1); $pass = $pass . $tmp; $i++; } return $pass;}$password = createRandomPassword();echo "Your random password is: $password";?>
Feel free to hack up the source, improve it and re-post it. Welcome to the world of Open Source =]