first commit

This commit is contained in:
MatMasIt
2021-08-16 22:33:22 +02:00
commit cb84001242
770 changed files with 828229 additions and 0 deletions

16
src/API.php Normal file
View File

@ -0,0 +1,16 @@
<?php
function API($method, $data)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.telegram.org/".$GLOBALS["config"]["lgbt"]["TOKEN"]."/" . $method);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
return json_decode(curl_exec($ch) , true);
}