⎙ Coder Net
115 subscribers
1 photo
5 files
2 links
➡️ #CoderNet kanaliga xush kelibsiz!

🌐 Web-sayt kodlari
👨‍💻 Tarqalmagan API kodlar
🖥️ Kompyuter savodhonligi
🐘 PHP bot kodlari
🐍 Python bot kodlar
📤 Kerakli ilovalar

Dasturchi👨‍💻
@mengaliyev_02
Download Telegram
Channel created
bismillah 08.05.2025

😮‍💨 Assalomu Alaykum «⎙ Coder Net» kanali oʻz ish faoliyatini boshlaydi!

😑 Reaksiya bosib qoʻllab tursalaring nasib bu kanal ham koʻtariladi!
Please open Telegram to view this post
VIEW IN TELEGRAM
10👍4🔥3🥰1🖕1
<?php
header('Content-Type: application/json');

$rand = json_decode(file_get_contents("https://en.wikipedia.org/api/rest_v1/page/random/summary"), true);

echo json_encode([
"title" => $rand["title"],
"description" => $rand["extract"],
"url" => $rand["content_urls"]["desktop"]["page"]
]);




💙 Vikepedia tasodifiy maqola api.
😑 Dasturchi: @bilimli_yigit
😑 Manba kanal: @iCoder_Net
Please open Telegram to view this post
VIEW IN TELEGRAM
5🔥2
<?php
header('Content-Type: application/json');

$url = "https://cbu.uz/uz/arkhiv-kursov-valyut/json/";

$response = file_get_contents($url);

if ($response === FALSE) {
echo json_encode([
"success" => false,
"message" => "Valyuta maʼlumotlarini olishda xatolik yuz berdi."
]);
exit;
}

$data = json_decode($response, true);

$filtered = [];
foreach ($data as $currency) {
$code = $currency['Ccy'];
$filtered[$code] = [
'valyuta' => $currency['CcyNm_UZ'],
'kurs' => $currency['Rate'],
'sana' => $currency['Date']
];
}

echo json_encode([
"success" => true,
"data" => $filtered
], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);


🖤 Manba: @iCoder_Net
32🍾111
mengaliyev.html
7.8 KB
🌟 https://m6221.myxvest1.ru/Mengaliyev/index.html kodi

😑Foydalanilgan texnologiyalar: HTML, CSS, JS

😑 Dasturchi: @bilimli_yigit
😑 Manba kanal: @iCoder_Net

😑 Reaksiya va Tarqatib qoʻyamiz
Please open Telegram to view this post
VIEW IN TELEGRAM
👍33💯111
@TopHamyonBot'dan olingan api kalit orqali ishlaydi!

🎁 Dasturchi: @bilimli_yigit
🎁 Manba: @iCoder_Net

🎁 Tarqatib qoʻyamiz avval bizda keyin boshqalarda!

if($data == "click") {
delete();
sms($cid2, "<b>💵 Balansizni necha so'mga to'ldirmoqchisiz?
📰 Minimal miqdor: 1000 so'm</b>", $back);
file_put_contents("step/$cid2.step","click");
}

//dasturchi: @bilimli_yigit

if ($step == "click" and is_numeric($text)) {
if ($text >= 1000 and $text <= 10000000) {
$shop_id = "DUKON_ID";
$shop_key = "API_KALIT";
$postData = [
"shop_id" => $shop_id,
"shop_key" => $shop_key,
"amount" => number_format($text, 2, '.', '')
];
$ch = curl_init("https://click.bigsaver.ru/api/create_invoice");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($postData));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
$fget = json_decode($response);
if (isset($fget->pay_url)) {
bot('sendMessage', [
'chat_id' => $cid,
'text' => "<b>🔥 Toʻlov miqdori qabul qilindi.

Endi esa pastdagi tugma orqali toʻlov qiling va toʻlovingizni tasdiqlang!</b>",
'parse_mode' => 'html',
'reply_markup' => json_encode([
'inline_keyboard' => [
[['text' => "💰Toʻlovni amalga oshirish", 'url' => $fget->pay_url]],
[['text' => " Tasdiqlash", 'callback_data' => "jonime={$fget->order_id}"]],
]
])
]);
} else {
sms($cid, "<b>➡️ To‘lov xavolasi yaratishda xatolik</b></b>", $back);
}
} else {
sms($cid, "<b>⚠️ Toʻlov miqdori notoʻgʻri kiritildi!

⬇️ Minimal toʻlov miqdori: 1000 soʻm

🔢 Boshqa miqdor kiriting.</b>", $back);
}
}


if (stripos($data, "jonime=") !== false) {
$_order_ = explode("=", $data)[1];
if (mb_stripos(file_get_contents("hamyonpays.txt"), $_order_) !== false) {
bot('answerCallbackQuery', [
'callback_query_id' => $qid,
'text' => "⚠️ To‘lov bajarilgan.",
'show_alert' => true,
]);
} else {
$response = file_get_contents("https://click.bigsaver.ru/api/check_payment/$_order_");
$fget = json_decode($response);
if (isset($fget->status) && $fget->status == "paid") {
$amount = $fget->amount;
$kabinet = mysqli_fetch_assoc(mysqli_query($connect, "SELECT * FROM kabinet WHERE user_id = $cid2"));
$a = $kabinet['pul'] + $amount;
$b = $kabinet['pul2'] + $amount;
mysqli_query($connect, "UPDATE kabinet SET pul = '$a' WHERE user_id = $cid2");
mysqli_query($connect, "UPDATE kabinet SET pul2 = '$b' WHERE user_id = $cid2");
file_put_contents("hamyonpays.txt", "\n$_order_", FILE_APPEND);
delete();
sms($cid2, "<b> Hisobingizga {$amount} so'm qo'shildi

@$bot - biznesingiz hamkori!</b>", $menyu);
} else {
bot('answerCallbackQuery', [
'callback_query_id' => $qid,
'text' => "⚠️ To‘lov bajarilmagan.",
'show_alert' => true,
]);
}
}
}
Please open Telegram to view this post
VIEW IN TELEGRAM
5421
fact.php
177 B
#api #kod

Kichkinagina sovgʻacha!

👹 Tasodifiy qiziqarli factlar chiqaruvchi api zerikishdan!

😄 Manba kanal: @iCoder_Net
🔡🔡🔡🔡🔡🔡🔡🔡🔡: @bilimli_yigit
Please open Telegram to view this post
VIEW IN TELEGRAM
42
Please open Telegram to view this post
VIEW IN TELEGRAM
65
convertor.php
68 KB
🇺🇿 Ushbu kod @Convert_ProBot kodi boʻlib juda mukammal tuzilgan!

💻 Dasturlash tili: PHP

Dasturchi: @mengaliyev_02
📢 Manba kanal: @iCoder_Net

⚠️ Muhim eslatma kodda 1-2 ta kichik xatolar boʻlishi mumkin!

🔗 Manba bilan tarqatilar iltimos!
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥5🎉21
🥷Shunaqa namoz vaqtlari api tarqataymi!

#reaksiya va #coment

{ "status": true, 
"city": "Denov",
"date": "04-01-2026",
"current_time": "08:55:04",
"week_day": "Yakshanba",
"next_prayer":
{ "name": "Peshin",
"time": "12:33",
"remaining": "03:37:56"
},
"times": {
"bomdod": "06:27",
"quyosh": "07:45",
"peshin": "12:33",
"asr": "15:02",
"shom": "17:21",
"hufton": "18:40"
}
}
Please open Telegram to view this post
VIEW IN TELEGRAM
🎉321111
namoz.php
2.4 KB
📱 Vada qilingan «namoz vaqtlari» api kodi!

🥷 Dasturlash tili: PHP

Dasturchi: @mengaliyev_02
📢 Manba kanal: @iCoder_Net


Manba bilan tarqatilar iltimos!
Please open Telegram to view this post
VIEW IN TELEGRAM
411
instagram.php
2.3 KB
❤️‍🔥 Insta info #api

Manba:
@mengaliyev_02
Kanal:
@iCoder_Net

#reaksiya qani
🔥4
Forwarded from 𝐖𝐞𝐛𝐂𝐨𝐝𝐞𝐫 𝐓𝐞𝐚𝐦 (🖤꯭|꯭•|꯭ αтχαм ꯭|•꯭|꯭🔥꯭|꯭•)
🔔 Telegram bot va web saytlar uchun zakazlar qabul qilamiz!
Bundan tashqari funksiyalar ham qoʻshib beramiz!
✖️ Ish sifatiga kafolat beriladi!
Loyiha dizayni va toʻlovlar siz istagan usulda!
✉️ Murojaat uchun: @mengaliyev_02
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from UzbekSim | News
🌐 @UzbekSim_Bot jamoasidan mini konkurs!

⚠️ Shartlar kanalga obuna boʻlish!
1.
@UzbekSim_Uz

Yutuqlar

1.
🎁 15 talik (GIFT)
2.
🎁 15 talik (GIFT)
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥2