inst-resources/randompass.php
author Dan
Thu, 17 Dec 2009 05:56:36 -0500
changeset 7 37824b18ff73
parent 0 67e1cc6cd929
permissions -rw-r--r--
Updated version numbering to be more easily controllable from the Makefile

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