Skip to content

Instantly share code, notes, and snippets.

@evaisse
Created December 11, 2009 11:07
Show Gist options
  • Save evaisse/254141 to your computer and use it in GitHub Desktop.
Save evaisse/254141 to your computer and use it in GitHub Desktop.
Password generation
<?php
$pass = (chr((int)rand(97,122))).(chr((int)rand(67,90))).(rand(1000,9999));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment