Files
web_2025/R3.01/tp/tp1/ex6/include/fonction.php
T
2026-03-23 14:01:45 +01:00

8 lines
113 B
PHP

<?php
function createPassword($n,$alphabet){
$length = strlen($alphabet);
$password = "";
return $password;
}
?>