Do you think your SQL database is secure from instant destruction? Yes, instant destruction because I am talking about SQL injection. It is a combination of two words that is: SQL + injection. Here, the injection doesn’t mean the medical terminology. You always have to take care of the SQL injection In PHP while writing […]
Create REST API in Laravel 8 Using JWT Authentication
You already know about the data security of JSON. The RESTful API uses JSON data. While sending JSON data through the API, you have to take care of its access. You have to restrict unauthenticated access. You cannot reveal the data passing in the form of JSON to everyone. Hence, it is required to use […]
How to Remove index.php From URL in CodeIgniter 4
Usually, in the CodeIgniter 4 project, you will see there is an additional argument in the URL. That is index.php in your project URL. So, if you don’t want this extra parameter then you can remove it. This will make a clean URL of your website. There are several ways to remove this index.php in […]
Upload Multiple Image with Validation in Codeigniter 4
By creating an array of images, you can upload multiple image in Codeigniter 4. The HTML element of file type has an attribute to accept multiple files. The input element of file type requires the name attribute to be an array. We already know about an array in PHP. It can store multiple items in […]
How to Upload Image and File in Codeigniter 4 with Validation
When you want to upload image in Codeigniter 4, you have to take care of the validation. Without proper validation, file upload is not secure for SQL injection. Someone might do the SQL injection with the file upload. Hence, it is very important to prevent code injection through the file upload. In Codeigniter, you can […]
Form Validation Example in Codeigniter 4 For Beginners
Codeigniter provides the form helper to validate the form. You can easily validate the inputs like name, email, password, and many more fields. In the entire form validation process, the form will submit to the specified action. While submitting the form to the action, it will check the form inputs as per the specified rules. […]
How to Create Github Login in Laravel 8 Using Socialite
Github is very popular for software development and version control using Git. It provides the distributed version control, source code management (SCM), bug tracking, and many more features. Also, you can use its API for creating the Github Login for any web or mobile application. While implementing this awesome functionality, you will require to have […]
How to Create Login with Twitter in Laravel 8 Using Socialite
When you want to create the login with Twitter in Laravel 8, you will require the socialite package. This package will allow interacting with the social account login using OAuth. In this entire authorization of Twitter login, the security things are managed by the OAuth system. It makes a secure authentication between the project and […]
Create LinkedIn Login in Laravel 8 Using Socialite
You can create a LinkedIn login for your web application using the socialite package in Laravel 8. LinkedIn provides the OAuth login for user authentication. The entire process is handled by the LinkedIn app. You will require to create an app in the LinkedIn Developer Console. The login with LinkedIn will manage by this app. […]
Create Socialite Login with Google Account in Laravel 8
By using the socialite package, you can create functionality for login with google in Laravel 8. In our previous tutorial, I already created the Facebook login in Laravel 8 using socialite. Similarly, you can create the Google login functionality. The Google login authenticates the user using OAuth. After the successful login, it will return the […]
- « Previous Page
- 1
- …
- 11
- 12
- 13
- 14
- 15
- …
- 22
- Next Page »