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

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-6790cdd9928f7663591266/] 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-6790cdd992a18751912170/] Using parameter (:any) [crayon-6790cdd992a1b288977244/] [...]

Read More

React Setup

Posted on: Saturday October 26, 2024

Required: Install node npm   Step 1: Install React Router (For Navigate to pages:page link) Open your terminal and navigate to your React project directory. Then, run the following command to [...]

Read More