📁 ফোল্ডার: hotspot_gateway

📌 কিভাবে ব্যবহার করবেন:
1. এই ফোল্ডারটি আপনার হোস্টিং-এর public_html বা ওয়েবরুটে আপলোড করুন।

উদাহরণঃ
https://hotspot.wifiapp.net/hotspot_gateway/pay.php

2. হটস্পট পেজে এই কোড বসান:

fetch('https://hotspot.wifiapp.net/hotspot_gateway/pay.php', {
    method: 'POST',
    headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
    body: 'mobile=' + encodeURIComponent(mobile) + '&profile=' + profile + '&amount=' + amount
})
.then(response => response.json())
.then(data => alert(data.message));

🔒 নিরাপত্তা টিপস:
bkash-config.php ফাইল `.htaccess` দিয়ে ব্লক করতে পারেন:

<Files "bkash-config.php">
    Order Allow,Deny
    Deny from all
</Files>
