Login   Register  
PHP Classes
elePHPant
Icontem

File: example_Condition.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Gobinath Mallaiyan  >  Random Password Generator  >  example_Condition.php  >  Download  
File: example_Condition.php
Role: Example script
Content type: text/plain
Description: Example for the Random Password Generator with Condition
Class: Random Password Generator
Generate random alphanumeric password strings
Author: By
Last change:
Date: 2005-04-27 00:38
Size: 208 bytes
 

Contents

Class file image Download
<?php
include_once("rndConditionPass.class.php");
$condition = array('caps'=>2'small'=>3'nums'=>2'specs'=>2);
$pass=new rndConditionPass(7,$condition);
$tmppass=$pass->PassGen();
echo 
$tmppass;
?>