inst-resources/randompass.php
changeset 0 67e1cc6cd929
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/inst-resources/randompass.php	Wed May 27 01:05:23 2009 -0400
@@ -0,0 +1,4 @@
+<?php
+$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
+for ( $i = 0; $i < 8; $i++ )
+  echo $chars{ rand(0, strlen($chars)-1) };