inst-resources/randompass.php
author Dan
Sun, 16 Aug 2009 00:13:41 -0400
changeset 5 85800cb04cc5
parent 0 67e1cc6cd929
permissions -rw-r--r--
Moved around some ExperienceUI directives; fixed missing $XPUI_ABORTED check in StackSelectLeave

<?php
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for ( $i = 0; $i < 8; $i++ )
  echo $chars{ rand(0, strlen($chars)-1) };