function randomPassword() { $alphabet = "123456789"; $pass = array(); //remember to declare $pass as an array for ($i = 0; $i < 6; $i++) { $n = rand(0, strlen($alphabet)-1); //use strlen instead of count $pass[$i] = $alphabet[$n]; } return implode($pass); //turn the array into a string } //echo randomPassword(); ?> function randomPasswordmdf() { $alphabet = "123456789ABCDEFGHabijul0"; $pass = array(); //remember to declare $pass as an array for ($i = 0; $i < 50; $i++) { $n = rand(0, strlen($alphabet)-1); //use strlen instead of count $pass[$i] = $alphabet[$n]; } return implode($pass); //turn the array into a string } //echo randomPassword(); ?> function regno() { $alphabet = "123456789"; $pass = array(); //remember to declare $pass as an array for ($i = 0; $i < 4; $i++) { $n = rand(0, strlen($alphabet)-1); //use strlen instead of count $pass[$i] = $alphabet[$n]; } return implode($pass); //turn the array into a string } //echo randomPassword(); ?>
Performance Challenge
for
Green Built Environment
Performance Challenge
for
Green Built Environment
Home
About Us
Benefits
Who Can Apply
Evaluation Criteria
Register
Submit Application
Awardees
Awardees 2024
Awardees 2022
Awardees 2021
Contact Us
Home
About Us
Benefits
Who Can Apply
Evaluation Criteria
Register
Submit Application
Awardees
Awardees 2024
Awardees 2022
Awardees 2021
Contact Us
Forgot Password:
SUBMIT