In Laravel, it is easy to break down the layouts into different sub layouts. It is a good approach to have a sub layout for a large view. Laravel supports the master layout concept. The master layout works as a placeholder where you can load different sub layouts. Also, you can pass data from different […]
Redirect HTTP to HTTPS Using Middleware in Laravel 8
After the development of any application, it needs to be hosted on the server. After uploading and configuration of the application, you will be able to access your website through a URL. You also need an SSL certificate to secure the domain URL. But, after installing the SSL certificate the site doesn’t redirect from HTTP […]
File Upload in React JS Using Laravel 8 RESTful API
To upload the file you always need a server-side application. The file will be uploaded to the server-side and its name will be stored in the database. At the client-side application, you required the file that will be sent to the server-side using the API. You can implement File upload in React JS. For the […]
How to Use Axios in React JS For API Requests Handling
When you are working at a client-side application then you need to submit the data to the server-side. Here the term API comes to make an easy communication between the client-side application and the server-side. The API helps to send and receive the data from both applications. You already know React JS is used for […]
How to Send Email in CodeIgniter 4 Using Gmail SMTP
You can send an email using Gmail SMTP In CodeIgniter 4. For sending an email, you have to configure the email settings in your application. If you are sending email through the SMTP then there are two protocols that are TLS and SSL. Both protocols work on different ports. In this post, I will show […]
Form Handling in React JS With Validation Using React State
The form is a collection of inputs that collects the information from the user. For the form handling in React JS, you will have to understand the events. The events handling in React elements is very similar to handling events on DOM elements. You can write the same events inside React. But it allows writing […]
Brief Overview of React Routing Using React Router DOM
Do you want to handle and render multiple components in React? If yes then this post is only for you. Yeah, I am talking about navigating from component to component. While navigating to components the page doesn’t refresh in React. Also, it needs to change the route dynamically. If you render the child components in […]
How to Implement jQuery Datatable in CodeIgniter 4
jQuery provides the datatable library to use in an HTML table. The jQuery datatable provides you the flexibility of pagination, searching, and ordering the data in the table. Even you can apply custom filters to the data. It also allows us to use column filters inside the table. You can implement it on any server-side […]
Generate Fake Data in CodeIgniter 4 Using Seeder and Faker
If you are working in a development environment, you always need to test your functionality. So for testing, you generally use the test data. You cannot perform the test on real data. Actually, the data may get updated and deleted according to the test cases. So, you can’t use the real data for the testing. […]
CRUD Application in PHP 8 Using Prepared Statement
Security is a measured challenge while creating an application in PHP. The raw SQL query in PHP can be injected through a malicious function. This may affect your entire functionality. Even you can lose your database or particular table and even any record. Due to the SQL injection, the vulnerable code or script can be […]
- « Previous Page
- 1
- …
- 10
- 11
- 12
- 13
- 14
- …
- 22
- Next Page »