๐–๐ž๐›๐‚๐จ๐๐ž๐ซ ๐“๐ž๐š๐ฆ
605 subscribers
272 photos
49 videos
697 files
381 links
โžก๏ธ "W" - Web
โžก๏ธ "C" - Coder
โžก๏ธ "T" - Team

๐Ÿ”ตKELAJAK BIZ BILAN!

โ™ป๏ธ Creator: @mengaliyev_02
โš™๏ธ Admin: @yurakda_qolgan
โ†ช๏ธ Chat: @WebCoder_Chat

Mashiniklarga aldanib qolmang bu offical kanal
Download Telegram
๐Ÿค– @Kodli_FilmTVBot kabi bot ochib beriladi!

๐Ÿ‘ค @Surxonlic_Coder
๐Ÿ‘4
๐Ÿค– @TezGramBot kimga shunaqa bot kere boสปlsa lich

๐Ÿ‘ค
@goodsmm_help
๐Ÿ‘6
Forwarded from Black Coders || Jamoasi (ะฏ Uzbek)
UzbekSeen Bot.php
283.9 KB
โšก๏ธ Fayl turi: PHP
๐Ÿ’Ž Yozilgan Tili: PHP : MYSQL
โœˆ๏ธ Kod haqida: Ushbu Kod
@Uzbek_seenuz_bot kodi boสปlib admin paneli udar Zamonaviy Dizaynga Ega kod va muhim eslatma:
๐Ÿค– Bot kodini premium.zip ichidagi bot.php oสปrniga qoสปyasiz!


โ›”๏ธ Dasturchilar:
@Surxonlic_Coder and @sUrKXanske_07

๐Ÿ“ข Manba kanal:
@QoraCoders_Uz

๐Ÿšซ Manbasiz Tarqalmasin Ok

๐Ÿ‘
#reaksiya bosamiz

โญ๏ธ Reaksiya Bosilmasa Qaytib kod tarqatilmedi



๐Ÿ† Bazi keraksiz joylari bor olib tashesizla
๐Ÿ‘14
<!DOCTYPE html>
<html>
<head>
<style>
.btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
color: #fff;
background-color: #007bff;
border-radius: 6px;
border: none;
cursor: pointer;
perspective: 1000px;
position: relative;
transition: transform 0.3s;
}

.btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 6px;
transform: rotateX(90deg) translateZ(-10px);
transition: transform 0.3s;
}

.btn:hover {
transform: rotateX(-20deg);
}

.btn:hover::before {
transform: rotateX(0deg) translateZ(-10px);
}
</style>
</head>
<body>
<button class="btn">PHPsUz</button>
</body>
</html>

โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
HTML da 3D tugma โบ
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿงณ Dasturlash tili (HTML)
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿ‘จโ€๐Ÿ’ป Dasturchi @Axi_jons
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿ—‚ Manba @PHPsUz
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘1๐ŸŒš1
session_start();

function generateCaptcha() {
$captcha = "";
$length = 6; // Captcha uzunligi
$characters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
$characters_length = strlen($characters);

for ($i = 0; $i < $length; $i++) {
$captcha .= $characters[rand(0, $characters_length - 1)];
}

$_SESSION['captcha'] = $captcha; // Captcha ni sesiyaga saqlash

// Captcha rasmini generatsiya qilish
$image = imagecreatetruecolor(120, 40);
$background_color = imagecolorallocate($image, 255, 255, 255);
$text_color = imagecolorallocate($image, 0, 0, 0);

imagefilledrectangle($image, 0, 0, 120, 40, $background_color);

// Captcha ni rasmda ko'rsatish
imagettftext($image, 20, 0, 10, 30, $text_color, 'path/to/font.ttf', $captcha);

// Captcha rasmini chiqarish
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
}

function validateCaptcha($userInput) {
if (isset($_SESSION['captcha']) && !empty($_SESSION['captcha'])) {
$captcha = $_SESSION['captcha'];
unset($_SESSION['captcha']); // Sesiyadan captcha ni o'chirish

// Kiritilgan captcha ni tekshirish
if (strtolower($userInput) === strtolower($captcha)) {
return true;
}
}
return false;
}

// Captcha rasmini generatsiya qilish uchun "captcha" buyrug'ini qabul qilish
if (isset($_GET['captcha'])) {
generateCaptcha();
exit();
}

// Captcha ni tekshirish uchun "validate" buyrug'ini qabul qilish
if (isset($_GET['validate'])) {
$userInput = $_GET['validate'];
$isValid = validateCaptcha($userInput);

if ($isValid) {
echo "Captcha to'g'ri.";
} else {
echo "Captcha noto'g'ri.";
}
exit();
}

?>

<!DOCTYPE html>
<html>
<head>
<title>Captcha</title>
</head>
<body>
<form action="" method="POST">
<p>Captcha rasmini ko'rish uchun <strong>/captcha</strong> buyrug'ini kiriting:</p>
<img src="?captcha" alt="Captcha">
<br>
<input type="text" name="captcha_input" placeholder="Captcha ni kiriting">
<button type="submit">Tekshirish</button>
</form>
</body>
</html>

โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿ’ก Captcha โ€žFuncโ€œ
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿงณ Dasturlash tili (PHP)
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿ‘จโ€๐Ÿ’ป Dasturchi @Axi_jons
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿ—‚ Manba @PHPsUz
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
require 'vendor/autoload.php';

use Telegram\Bot\Api;
use GuzzleHttp\Client;

$telegram = new Api('BOT_TOKEN');

$telegram->commandsHandler(true);

$telegram->onCommand('start', function($update) use ($telegram){
$chatId = $update->getMessage()->getChat()->getId();
$telegram->sendMessage([
'chat_id' => $chatId,
'text' => 'Salom! Men tarjimon botman. Matningizni tarjima qilish uchun /tarjima buyrug\'ini kiriting.'
]);
});

$telegram->onCommand('tarjima', function($update) use ($telegram){
$chatId = $update->getMessage()->getChat()->getId();
$text = $update->getMessage()->getText();

// Tarjimonlik uchun API so'rovini tashkil etish
$apiKey = 'API_KEY';
$url = "https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=en&dt=t&q=" . urlencode($text);

// API ga so'rovni jo'natish
$client = new Client();
$response = $client->request('GET', $url);
$data = json_decode($response->getBody(), true);

if (isset($data[0][0][0])) {
$translation = $data[0][0][0];
$telegram->sendMessage([
'chat_id' => $chatId,
'text' => "Tarjima: $translation"
]);
} else {
$telegram->sendMessage([
'chat_id' => $chatId,
'text' => 'Kechirasiz, tarjima amalga oshmadi.'
]);
}
});

$telegram->run();

โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
ใŠ—๏ธ Tarjimon bot
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿงณ Dasturlash tili (PHP)
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
๐Ÿ‘จโ€๐Ÿ’ป Dasturchi @Uzsecurity
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
โœ… Manba @PHPsUz
โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ข
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘2
๐Ÿ‘ค @iFineCoder username qale chiqibdi

#coment yozila
๐Ÿพ6๐Ÿ‘3
Savol-Javob(MittiDevKa).py
935 B
๐Ÿ“ˆ Savol va javob bot...
---------------------------------
๐ŸŽ› Dasturlash tili Python
---------------------------------
๐Ÿ—ƒ Manba @PHPsUz
๐Ÿ‘จโ€๐Ÿ’ป Dasturchi @MittiDev
---------------------------------
Please open Telegram to view this post
VIEW IN TELEGRAM
โคโ€๐Ÿ”ฅ4๐Ÿ‘1
Baho?โœˆ๏ธ

Pro Admin Panel๐Ÿง 
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
โค1๐Ÿ‘1
Shu funksiyani tashlab beremi๐Ÿง 
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘9๐ŸŒš1
AuksionerUZ.zip
10.3 KB
๐Ÿ”ฅAuksion bot kodi, kod UzAnubis tomonidan bir paytlar tuzilgandi, keyin bizga yetb keganda ancha xatolari boridi shularni toโ€˜girlab, text/photolarni ham yangilaganmiz, qoโ€˜shimcha qiwi avto toโ€˜lov ham qoโ€˜shganmiz๐Ÿ‘

Dasturlash tili: PHP
Ma'lumot Baza: MySQL


Shuningdek;
Koddagi xatolikni bartaraf etishda,
@guycoder va @king_0958 ishtirok etgan))
Please open Telegram to view this post
VIEW IN TELEGRAM