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-68032bf81e9ee885457166/] 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

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

Redirect in CI4

Posted on: Tuesday November 19, 2024

Redirect with a Flash Message To pass data (like success or error messages) during a redirect, you can use session flashdata. Example: Set flashdata in the controller before redirecting: [...]

Read More

Flashdata (Temporary Session Data)

Posted on: Tuesday November 19, 2024

Flashdata is temporary session data that is available for the next request only. Example: Setting Flashdata [crayon-68032bf81ef99408866899/] Example: Retrieving Flashdata [...]

Read More

Session in CI4

Posted on: Tuesday November 19, 2024

Storing Data in Session Use the session() helper function or the Config\Services::session() method to access the session instance. Storing Grouped Session Data Use the session()->set() method to [...]

Read More