Encrypt Decrypt in CI4

Posted on: Wednesday April 30, 2025

Encrypt & Decrypt in CI4, like id in parameter or anything. STEP 1: [crayon-681288d82ef44112279668/] STEP 2: (Encrypt) [crayon-681288d82ef49088362448/] 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-681288d82f28e268128278/] Match: [crayon-681288d82f292772942490/] [...]

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-681288d82f834734703068/] 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

Blob Image to PDF

Posted on: Monday November 25, 2024

BluDart  API way bill response is in blob, so save it as PDF file inh a folder instead of storing in a database. I already stored in the database so I’ll show you how to save as PDF. [...]

Read More

Disable the button when the form is submitted

Posted on: Saturday November 23, 2024

Solution: Disable the button when the form is submitted. Re-enable the button after the page is loaded or when the form submission is complete. Example Implementation: HTML: [...]

Read More