Your Ultimate Destination
Learn Skills. Build Career. Earn Online.
Basic lessons
৳500 / month
৳1000 / month
HTML stands for?
// server.js (Node.js + Express + Stripe)
const express = require('express');
const stripe = require('stripe')('YOUR_STRIPE_SECRET_KEY');
const app = express();
app.use(express.json());
app.post('/create-checkout-session', async (req, res) => {
const { plan } = req.body;
const session = await stripe.checkout.sessions.create({
payment_method_types: ['card'],
line_items: [{
price_data: {
currency: 'usd',
product_data: { name: plan },
unit_amount: plan === 'premium' ? 1000 * 100 : 500 * 100,
},
quantity: 1,
}],
mode: 'payment',
success_url: 'https://b2bangla.com/success',
cancel_url: 'https://b2bangla.com/cancel',
});
res.json({ url: session.url });
});
app.listen(4242, () => console.log('Server running'));
| No | Course Name | Description | Duration | Level |
|---|---|---|---|---|
| 1 | Forex Trading Basics | Learn the fundamentals of Forex trading | 7 Days | Beginner |
| 2 | Gold Trading Strategy | Professional GOLD trading strategy | 5 Days | Intermediate |
| 3 | Affiliate Marketing | Earn online by promoting products | 10 Days | Beginner |
| 4 | Website SEO Training | Improve Google ranking and traffic | 8 Days | Intermediate |
| 5 | Blogging & Content Writing | Create SEO friendly blog content | 6 Days | Beginner |