The Code You Will Love
Multi time store data in PHP session
Posted on: Wednesday March 22, 2023
Store multiple data in a session, you can store multiple times data in a PHP session without destroying previous session data. Please find PHP method below: [crayon-6812d8ebd5c26349758450/] [...]
Read MorecURL with Parameter in PHP
Posted on: Tuesday March 21, 2023
[crayon-6812d8ebd6078391386578/] [...]
Read MoreCustom Form Submit with file upload in WordPress
Posted on: Saturday March 4, 2023
Craete custom form in your theme template/file and submit it, insert data in database and move uploaded file. View/Template (HTML) [crayon-6812d8ebd620d273188315/] function.php [...]
Read MoreAjax in WordPress
Posted on: Saturday March 4, 2023
Use Ajax in WordPress custom template or theme. View/Template (HTML & jQuery) [crayon-6812d8ebd63cf347639958/] admin-ajax.php is fix file from wordpress, all ajax request will go to [...]
Read MoreCart Library in CodeIgniter 4
Posted on: Saturday February 25, 2023
CodeIgniter 4 officially not supporting Cart Library like CI3. but we will use the same cart in CI4. Let’s get Started. STEP 1 Create a file ‘Cart.php’ in [...]
Read MoreCRUD Query in CodeIgniter 4
Posted on: Saturday February 11, 2023
You can find Database Query for CRUD operation in CodeIgniter 4 below. SELECT query in CodeIgniter 4 INSERT query in CodeIgniter 4 UPDATE query in CodeIgniter 4 DELETE query in CodeIgniter 4 [...]
Read MoreSend Email in CodeIgniter 4 with HTML Template
Posted on: Thursday February 9, 2023
We will follow 3 simple step SMTP Setting in CodeIgniter 4 Load Email service/library in CodeIgniter 4 Send mail in CodeIgniter 4 Here we can use Custom HTML Template and Attachment in CodeIgniter 4. [...]
Read MoreDomPdf in CodeIgniter 4 without composer
Posted on: Wednesday February 8, 2023
You can see many articles and blogs on Dompdf in CodeIgniter 4, but they are composer base installations. Here we will see, how we can use Dompdf in CodeIgniter 4 manually, without using the [...]
Read MoreController in CodeIgniter 4
Posted on: Wednesday February 8, 2023
Controller Create app/Controllers/Home.php and paste the controller code given below [crayon-6812d8ebd70a4847946212/] [...]
Read MoreModel in CodeIgniter 4
Posted on: Wednesday February 8, 2023
Here we are assuming that there is a controller method to submit a registration form. we had created a Database Connection and a table of ‘users’. STEP 1: Create [...]
Read More