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 […]
How to Create Facebook Login in Laravel 8 Using Socialite
When you are creating an authentication for the user login then you always take care of secure login. Generally, you create an email or username and a password for the login. Sometimes, you need to store the login session in the browser storage to maintain the login state of the user. But, what if you […]
Create a CRUD Application in CodeIgniter 4 For Beginners
The CodeIgniter 4 is launched with the updated features over the CodeIgniter 3. Now, it is a little bit similar to the Laravel framework. You can create the database schema using the migrations in CodeIgniter 4. It will work like version control of the database schema. Every time, when you will update the schema, you […]
How to Install and Configure pgAdmin 4 in Ubuntu 20.04
For accessing the PostgreSQL database you can use the command line or GUI. If you want to access and use PostgreSQL in GUI mode then you will have to install pgAdmin 4. It will provide you a web interface and also an app interface. The GUI mode is a little different from the phpMyAdmin. But, […]
- « Previous Page
- 1
- …
- 11
- 12
- 13
- 14
- 15
- …
- 22
- Next Page »