The Virtual Host in PHP provides a domain URL in the local system. It allows you to run your application on a domain virtually. You can configure Apache virtual host easily for your application. If you create the Apache Virtual Host in PHP application then it will be super easy for you. You can run […]
How to Use Toastr JS in Laravel 8 For Showing Notification
While creating a web application, it is common to show the notification on the client-side for a certain action. Suppose, for adding a new record, or updating a record. On completion of that action, we show a notification. It shows the response based on that action. There are lots of libraries for showing notifications or […]
Form Handling in React JS Using React Hook Form Library
There are lots of ways to validate and form handling in React JS. You may write the custom validation rules for every input inside the form. It can be good when you have fewer inputs in the form. This can be handled by writing a few lines of code. But think, when you have a […]
API Handling in React Functional Component Using Hook
In React, we have already seen the API request handling in a class component. The class component is the old approach in React JS. After releasing React 16.8, we are accustomed to the functional component. The functional component helps in writing a more cleaned-up code than the class component. In React posts, I have already shared […]
Login and Registration Authentication in Codeigniter 4
The authentication system in any application is the main security feature. If you don’t want to give the open-access of your application to the user then it will require to have a lock. Here the authentication will work as an access key for that lock. At the application level, the user will need to enter […]
How to Use Effect Hook in React Functional Component
The React hooks are a very powerful feature that allows us to hook into the React functionality. It is a JavaScript function that can be used or called inside the React functional component. You cannot use a hook inside the custom function in the component. So, it is necessary to call the hook function at […]
State in Functional Component in React Using useState Hook
The state is a kind of instance of the React component class. It can be used to hold information about the component. The data can be changed in the component over time. It is an updatable structure that can be updated while values are changed. Firstly, the state was used with the class component in […]
How to Create Custom Password Reset Link in Laravel 8
Whenever you create login and signup functionality for user authentication, you require a password reset option. This password reset link will help when the users forgot their password. In the reset link, there will be generally a token and that token needs to validate. In Laravel, there are default auth scaffolding like UI auth, Breeze […]
Encrypt Form Data in JavaScript Before Sending to Server
While submitting the form data from the client-side to the server-side the data is visible in the network tab. For the development end, there is nothing to worry about it. But when you are in production mode, you always think about the security things. Obviously, it is thinkable because data is a big asset nowadays. […]
How to Create Loading Spinner Using Bootstrap in React JS
Generally, an API takes time to return the response. It depends upon the server configuration and the data size. While fetching the data through API the screen goes blank until the response shows. It is not a good user experience for real-world applications. There can be possibilities that the user will change the screen or […]
- « Previous Page
- 1
- …
- 9
- 10
- 11
- 12
- 13
- …
- 22
- Next Page »