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 More

NODE.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 More

NODE.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 More

Encrypt Decrypt in CI4

Posted on: Wednesday April 30, 2025

Encrypt & Decrypt in CI4, like id in parameter or anything. STEP 1: [crayon-698b7fc74216d050616648/] STEP 2: (Encrypt) [crayon-698b7fc742180606349711/] STEP 3: (Decrypt) [...]

Read More

Encrypt Password in CI4

Posted on: Monday April 28, 2025

Password encrypt and match in CI4 with hash encrypt Encrypt: [crayon-698b7fc742a88360593195/] Match: [crayon-698b7fc742a94387000245/] [...]

Read More

Encrypt 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 More

Hash 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 More

Login in CI4 Complete Code

Posted on: Friday January 3, 2025

Controller: [crayon-698b7fc743e89187343640/] 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