Are you looking for intelligent bots created with Python and PHP? Look no further than Serรธ Team! This Telegram channel, with the username @serobots, is dedicated to crafting intelligent bots and providing innovative programming solutions and automation tips. Owned by @it_bero, this channel is the perfect place for programmers and tech enthusiasts to stay updated on the latest developments in bot creation and automation. Join Serรธ Team today and be a part of a community that is passionate about programming and technology. Don't miss out on the opportunity to enhance your skills and knowledge in this exciting field. Follow @serobots on Telegram and visit the web channel @SeroWeb for more information and resources. Join Serรธ Team and take your programming skills to the next level!
20 Nov, 19:37
19 Nov, 23:53
19 Nov, 23:06
19 Nov, 23:02
19 Nov, 14:45
17 Nov, 22:31
17 Nov, 12:19
16 Nov, 19:03
<?php
$sity = $_GET['link'];
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://realfavicongenerator.p.rapidapi.com/favicon/icon?site=$sity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-host: realfavicongenerator.p.rapidapi.com",
"x-rapidapi-key: e747e952b7msh5f8765d9997365dp15892ajsn02bac8eddd1d"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}