The Code You Will Love
Bootstrap / HTML โ Next.js (React JSX) Differences
Posted on: Tuesday January 20, 2026
๐งพ Bootstrap / HTML โ Next.js (React JSX) Differences ๐ 1๏ธโฃ class โ className HTML / Bootstrap <div class="container mt-3"></div> Next.js / React <div className="container [...]
Read MoreReact + Next.js โ COMPLETE HOOKS & IMPORTANT CONCEPTS (NOTES)
Posted on: Tuesday January 20, 2026
๐ฅ React Core Hooks (Must know) HOOK Power Detail useState Yaad rakhna Component ke andar value store & update (counter, toggle, form, modal) useEffect Time ke baad kaam Render ke baad code run [...]
Read MoreNODE.JS + MySQL CONNECTION
Posted on: Tuesday January 13, 2026
1๏ธโฃ MySQL Server Check (XAMPP) XAMPP Control Panel open karo MySQL โ Start (Running hona chahiye โ ) phpMyAdmin open: http://localhost/phpmyadmin 2๏ธโฃ Database & Table Create Database: [...]
Read MoreNODE.JS BASIC SETUP โ (BEGINNER)
Posted on: Tuesday January 13, 2026
1๏ธโฃ Node.js & npm Installation Check Command Prompt / Terminal: node -v npm -v Expected Output: Node : v20.x.x NPM : 10.x.x ๐ Agar version aa raha hai โ Node & npm installed โ [...]
Read MoreEncrypt Decrypt in CI4
Posted on: Wednesday April 30, 2025
Encrypt & Decrypt in CI4, like id in parameter or anything. STEP 1: [crayon-69858cb6c5392828909796/] STEP 2: (Encrypt) [crayon-69858cb6c53a0809295122/] STEP 3: (Decrypt) [...]
Read MoreEncrypt Password in CI4
Posted on: Monday April 28, 2025
Password encrypt and match in CI4 with hash encrypt Encrypt: [crayon-69858cb6c5a89308740689/] Match: [crayon-69858cb6c5a94216667334/] [...]
Read MoreEncrypt decrypt in CI4 – CodeIgniter 4
Posted on: Friday January 24, 2025
To pass an encrypted value in a URL and decrypt it in CodeIgniter 4 (CI4), you can use the Encryption library provided by CI4. Here’s how to implement this: 1. Configure Encryption in CI4 [...]
Read MoreRandom Unique Number in CI3
Posted on: Monday January 6, 2025
Random Unique 6 digit number generation in CI3 [crayon-69858cb6c5fce198099447/] [...]
Read MoreHash Password in CI4
Posted on: Friday January 3, 2025
Password: 1. Created a Helper Function Created helper functions for password hashing and verification to reuse across your application. Create a file in app/Helpers, e.g., [...]
Read MoreLogin in CI4 Complete Code
Posted on: Friday January 3, 2025
Controller: [crayon-69858cb6c64c9329622171/] Password: 1. Created a Helper Function created helper functions for password hashing and verification to reuse them across your application. Create a file [...]
Read More