passwdgen/generate.php

9 lines
96 B
PHP
Raw Normal View History

<?php
$password = array(
'password' => 'fuckyou'
);
echo json_encode($password);
?>