How can I use the following code in browser with $_GET method instead of readline()
$MadelineProto->phone_login(readline('Enter your phone number: '));
$authorization = $MadelineProto->complete_phone_login(readline('Enter the
phone code: '));
if ($authorization['_'] === 'account.password') {
$authorization = $MadelineProto->complete_2fa_login(readline('Please enter
your password (hint '.$authorization['hint'].'): '));
}
if ($authorization['_'] === 'account.needSignup') {
$authorization = $MadelineProto->complete_signup(readline('Please enter your
first name: '), readline('Please enter your last name (can be empty): '));
}
when I use $_GET, many problems will make e.g. it sends the code few times or ...