Angular 13 Swiper Image Touch Slider Example Tutorial

This tutorial will guide you on how to create a touch-enabled image/content slider or carousel in an Angular 13 application using the ngx-useful-swiper npm package. You will also learn about the various features of Swiper, including library agnosticism, touch movement, mutation observer, rich API, full RTL support, multi-row slides layout, transition effects, two-way control, full navigation control, flexbox layout, the most flexible slides layout grid, parallax … Read more

Install LAMP (Linux, Apache, MySql & PHP) on Ubuntu 20.04 AWS EC2

In this tutorial, we will guide you through the step-by-step process of installing LAMP (Linux, Apache, MySQL, PHP) on an Ubuntu 20.04 AWS EC2 instance. How to Install LAMP (Linux, Apache, MySql & PHP) on Linux Ubuntu 20.04 AWS EC2 Step 1 – Launching a Virtual Machine Log into the AWS EC2 Management Console, and click … Read more

Laravel 9 Form Submit Using jQuery Ajax Example

This tutorial demonstrates how to submit a form in Laravel 9 using jQuery Ajax with client-side validation. The default form processing method involves sending form data to the server via POST or GET, but Ajax is a preferred method for submitting forms using JavaScript or XHR. To accomplish this, follow the steps below: Laravel 9 Form Submit Using jQuery … Read more

Laravel 9 Vue JS Post Axios Request Tutorial

Laravel 9 Axios post request example; In this tutorial, we will learn how to send form data with Vue js using Axios post HTTP request in laravel. This tutorial will guide us step by step on how to send form data to the controller using axios post HTTP request in laravel 9 with Vue js. … Read more

Creating an Azure Machine Learning Workspace and Datastores using Bicep

This article explains how to create an Azure Machine Learning Workspace and Datastores using Bicep. Azure Machine Learning is a cloud service that accelerates and manages the machine learning project lifecycle. The core components of the Azure Machine Learning service include the Workspace, Managed Resources, Linked Services, Assets, and Dependencies. To create an Azure Machine … Read more

Laravel 9 Form Submit Using jQuery Ajax Using Controller

In this tutorial, we will learn how to submit a form using jQuery Ajax in Laravel 9. Ajax allows us to submit form data without refreshing the page, providing a better user experience. Sure, here’s a summary of each step: Step 1: Set up Laravel 9 Step 2: Create a Form Step 3: Set up the Route Step … Read more

Top PHP Frameworks To Use in 2024

PHP frameworks are software libraries that provide a collection of functions and tools to help developers build web applications more efficiently. They aim to simplify the development process by providing pre-written code that can be reused across different projects, reducing the amount of time required to build a web application from scratch. In this article, we will explore … Read more

Angular 13 datatable example with pagination sorting filtering

In this tutorial, we will learn how to create a table with pagination, sorting, and filtering using datatables in an Angular 13 application. Step 1: Create a new Angular 13 app To get started, open your terminal and run the following command to create a new Angular 13 app: Step 2: Install jQuery and Datatables plugins … Read more