Generate Password to Textbox using php

This is one of the simple and useful concept, Concept is How to Generate the random password using php. You can give the password  suggestion to the user through the text box. You can generate the password with the combination of the lowerletter and uppercase and numbers, special characters with number of letters. You can able to generate the week and strong passwords through this php concept.
 
 This is very simple also very useful to the user. I provided the full code and demo page you can refresh and see the random password generation using the below example. Below have a php code and the live demo. I hope this post is very useful.



<html>
<head>
<title>Generate Password for textbox using Php</title>
<style>
input
{
width:250px;
height:30px;
border:1px solid #000;
text-indent:10px;
}
</style>
</head>
<body>
<?php
function generatePassword ($length = 8)
{
  $genpassword = "";
  $possible = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
  $i = 0;
  while ($i < $length) {
    $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
    if (!strstr($genpassword, $char)) {
      $genpassword .= $char;
      $i++;
    }
  }
  return $genpassword;
}
?>
<input type="text" value="<?php echo generatePassword(); ?>">
</body>
</html>

Post a Comment

0 Comments