<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Manual ----- Random Password generator </title>
<style type="text/css">
<!--
.style4 {
font-size: 12px;
font-family: Tahoma;
}
.style5 {font-size: 12px; font-family: Tahoma; font-weight: bold; }
-->
</style>
</head>
<body>
<p class="style4"><strong> Random Password generator <gobinathm at gmail dot com> </strong><strong> </strong></p>
<p class="style4"> The class helps you to generator a random password of any lenght.<br />
<br />
Here is the Example create by implementing the class.. </p>
<ol>
<li class="style4"><?PHP</li>
<li class="style4"> include_once("rndPass.class.php");</li>
<li class="style4"> $pass=new rndPass(10);</li>
<li class="style4"> $tmppass=$pass->PassGen();</li>
<li class="style4"> echo $tmppass;</li>
<li class="style4"> ?></li>
</ol>
<p> <strong> </strong><span class="style4"><strong> Line 2 :</strong> Includes the class to this script
<strong><br />
Line 3 :</strong> Create an object and pass the lenght of the password as Parameter<strong><br />
Line 4 :</strong> Call the Password generation function and assign the generatored password to a Temparary variable <strong><br />
Line 5 :</strong> Display the value <strong><br />
</strong></span></p>
<p> </p>
<p class="style4"> </p>
</body>
</html>