Total members 10262 | Gratitudes |It is currently Thu May 24, 2012 4:58 am Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 1 post ] 
Author Article
 Article subject: generate password using php
PostPosted: Sun Nov 30, 2008 8:12 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2279
Location: Earth
Has thanked: 39 time
Have thanks: 61 time

The following code allow you to generate a password randomly using PHP, you can specify the length of generated password and also the length.

Code:

<?php

function generateRandpassword($size=9, $power=0) {
    
$vowels = 'aeuy';
    
$randconstant = 'bdghjmnpqrstvz';
    if (
$power & 1) {
        
$randconstant .= 'BDGHJLMNPQRSTVWXZ';
    }
    if (
$power & 2) {
        
$vowels .= "AEUY";
    }
    if (
$power & 4) {
        
$randconstant .= '23456789';
    }
    if (
$power & 8) {
        
$randconstant .= '@#$%';
    }

    
$Randpassword = '';
    
$alt = time() % 2;
    for (
$i = 0; $i < $size; $i++) {
        if (
$alt == 1) {
            
$Randpassword .= $randconstant[(rand() % strlen($randconstant))];
            
$alt = 0;
        } else {
            
$Randpassword .= $vowels[(rand() % strlen($vowels))];
            
$alt = 1;
        }
    }
    return
$Randpassword;
}

?>

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 1 post ] 
Quick reply


  

 Similar topics
 php Password protect a page
 simple password Strength checker
 Mile200: Removing Username, Password & Login from Header
 need help with Create USER and Password in JAVA
 How to generate dynamic 3d pie chart in php???
 [ask] How to generate ALT+ENTER in java?
 Protect page using password in PHP
 how to encrypt password in jsp

All times are UTC [ DST ]


Users browsing similar posts

Users browsing this forum: No registered users and 2 guests



Jump to:  
Previous Article | Next Article 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team