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-676886254c494683186454/] 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

Routes in CI4

Posted on: Tuesday November 19, 2024

Example of Routes (app\Config\Routes.php): [crayon-676886254c5e8068005131/] Using parameter (:any) [crayon-676886254c5ea239864286/] [...]

Read More