inst-resources/randompass.php
author Dan
Wed, 27 May 2009 01:05:23 -0400
changeset 0 67e1cc6cd929
permissions -rw-r--r--
First commit. It's working!

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