The Code You Will Love
Route in Laravel
Posted on: Wednesday March 29, 2023
In the Laravel route there are 2 ways: Direct load view file from the route, No need to go to controller. Go to the Controller and perform the operation then load the view file. [...]
Read MoreRemove public from url in Laravel
Posted on: Saturday March 25, 2023
STEP 1 : Check root folder for server.php, if there is no any server.php just create one with given code below: [crayon-673ed1f6c1f4a672357267/] STEP 2: If you want to remove public [...]
Read MoreStart with Laravel
Posted on: Saturday March 25, 2023
Introduction and requirements for laravel. For starting the project on laravel we need 3 things to be installed in our system. Composer Use E:\xampp8\php\php.exeforcomposer PHP path. Node and NPM. if [...]
Read MoreMulti 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-673ed1f6cdb47421093810/] [...]
Read MorecURL with Parameter in PHP
Posted on: Tuesday March 21, 2023
[crayon-673ed1f6d7b87771377816/] [...]
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-673ed1f6dc5be766244024/] 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-673ed1f6e0036992477914/] 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 More