PHP Classes

File: example.php

Recommend this page to a friend!
  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: 19 years ago
Size: 113 bytes
 

Contents

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