1 | <?php |
||
2 | ob_start(); |
||
3 | |||
4 | require "../Developers/Password.php"; |
||
5 | |||
6 | $url = new \Developers\Password(); |
||
7 | |||
8 | //Generates the password randomly, including uppercase, lowercase, numbers and symbols. |
||
9 | $result = $url -> GeneratePass(); |
||
10 | |||
11 | |||
12 | echo $result; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
13 | ob_end_flush(); |
||
14 |