<?php
 
require("class.password.generator.php");
 
?>
 
<pre>
 
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 
----------------------------------------------------------------------------------------------------------
 
 
NUMBER PASSWORD (length=10): <?=@$DOZPASSGEN->genPassword('int',10);?>  - Exmple: $DOZPASSGEN->genPassword('int',10);        
 
        OR
 
NUMBER PASSWORD (length=10): <?=@$DOZPASSGEN->genPassword('int',10);?>  - Exmple: $DOZPASSGEN->genPassword('integer',10);
 
        
 
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 
----------------------------------------------------------------------------------------------------------
 
 
STRING PASSWORD (length=10): <?=@$DOZPASSGEN->genPassword('str',10);?>  - Exmple: $DOZPASSGEN->genPassword('str',10);                
 
        OR
 
STRING PASSWORD (length=10): <?=@$DOZPASSGEN->genPassword('string',10);?>  - Exmple: $DOZPASSGEN->genPassword('string',10);        
 
 
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||                        
 
------------------------------------------------------------------------------------------------------------
 
 
MIX    PASSWORD (length=10): <?=@$DOZPASSGEN->genPassword('mix',10);?>  - Exmple: $DOZPASSGEN->genPassword('mix',10);                                         
 
        OR
 
MIXED  PASSWORD (length=10): <?=@$DOZPASSGEN->genPassword('mixed',10);?>  - Exmple: $DOZPASSGEN->genPassword('mixed',10);        
 
                                        
 
-----------------------------------------------------------------------------------------------------------
 
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 
 
DEFAULT    PASSWORD (length=10): <?=$DOZPASSGEN->genPassword();?>        -     Exmple: $DOZPASSGEN->genPassword();    
 
-----------------------------------------------------------------------------------------------------------
 
                Good Luck!!
 
----------------------------------------------------------------------------------------------------------
 
            <a href="mailto:[email protected]?subject=Password_Generator_Class">Email me</a>
 
---------------------------------------------------------------------------------------------------------
 
</pre>
 
 |