Jump to content

loop probably really easy


deeej

Recommended Posts

Hi,I am stuck with this random password generator I want it to create a random password for every entry in my database but when I submit the code it does the same random password for all the entries.

 

code:

// random password gen

function createRandomPassword() {

    $chars = "abcdefghijkmnopqrstuvwxyz023456789";
    srand((double)microtime()*1000000);
    $i = 0;
    $pass = '' ;

    while ($i <= 7) {
        $num = rand() % 33;
        $tmp = substr($chars, $num, 1);
        $pass = $pass . $tmp;
        $i++;
    }

    return $pass;

}

// set new password for all
$password = createRandomPassword();
$q1 = "update members set password = '$password'";


 

Probably really easy, hope some one can help thanks.!!

Link to comment
https://forums.phpfreaks.com/topic/64695-loop-probably-really-easy/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.