Files

8 lines
126 B
PHP
Raw Permalink Normal View History

2026-03-23 14:01:45 +01:00
<?php
2026-04-15 15:34:46 +02:00
function createPassword($n,$alphabet) {
$length = strlen($alphabet);
$password = "";
return $password;
2026-03-23 14:01:45 +01:00
}
?>