inst-resources/randompass.php
author Dan
Tue, 08 Dec 2009 02:25:33 -0500
changeset 6 6016fd9e848f
parent 0 67e1cc6cd929
permissions -rw-r--r--
A couple minor fixes: more flexible version numbering; added a CreateDirectory before uninstaller generation (whoops)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
67e1cc6cd929 First commit. It's working!
Dan
parents:
diff changeset
     1
<?php
67e1cc6cd929 First commit. It's working!
Dan
parents:
diff changeset
     2
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
67e1cc6cd929 First commit. It's working!
Dan
parents:
diff changeset
     3
for ( $i = 0; $i < 8; $i++ )
67e1cc6cd929 First commit. It's working!
Dan
parents:
diff changeset
     4
  echo $chars{ rand(0, strlen($chars)-1) };