This commit is contained in:
2026-03-23 14:01:45 +01:00
parent ca8ce10644
commit 0bccb2e3a3
21 changed files with 594 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
function createPassword($n,$alphabet){
$length = strlen($alphabet);
$password = "";
return $password;
}
?>