Login   Register  
PHP Classes
elePHPant
Icontem

File: example.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.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example Script
Class: Random Password Generator
Generate random alphanumeric password strings
Author: By
Last change:
Date: 2005-03-13 22:55
Size: 113 bytes
 

Contents

Class file image Download
<?php
include_once("rndPass.class.php");
$pass=new rndPass(10);
$tmppass=$pass->PassGen();
echo 
$tmppass;
?>