Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   need for creating accounts for testing purposes (http://www.bvlist.com/showthread.php?t=12573)

BamBam0077 2nd August 2022 00:22

need for creating accounts for testing purposes
 
//https://www.codegrepper.com/code-examples/php/create+random+username+and+password+php
function rand_string( $length ) {
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX YZ0123456789";
return substr(str_shuffle($chars),0,$length);
}


$emo1234 = rand_string(13);

//https://www.codegrepper.com/code-examples/php/create+random+username+and+password+php
function rand_passw0rd( $length ) {
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX YZ0123456789";
return substr(str_shuffle($chars),0,$length);
}

$password1234 = rand_passw0rd(32); // length 32 password


All times are GMT +2. The time now is 03:15.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.