Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 318 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 318 Bytes

TelePHP

Send data to telegram bot in php

USAGE :

Download and extract files to your working DIR & Use the below snippet :)

<?php

include './telegram.php';

if (!empty($_POST['variable'])) {
  $content = $_POST['variable'];
  SendMessage($content); // Call the function to send data to tele bot :)
}

?>