If you are beginner then this post is for you. For showing the new content on page without refresh we will use JQuery Reload Page without Refresh and server side PHP. In this article, I will demonstrate to show the…

How to modify JSON response in Laravel 8?
In this tutorial we will learn to modify the JSON and add new content to it. sometime we need to add some global data to every API, so in this article we will create a middleware and temper the sons…

Create custom middleware in Laravel 8
In this tutorial we will going to learn custom middleware in Laravel 8. Middleware are used to create a layer between request and response of the http request. it filters or create a logic before the request serve to the…

How to setup simple jQuery form validation?
In this tutorial, we are going to learn jQuery form validation using jQuery validation plugin. this plugin have many features like to validate text, email, phone number , sync Ajax request etc. Let’s begin with step by step guide: Step…

How to call api in angular 12?
In this tutorial, we are going to call the rest API’s using the angular HttpClient. Angular has vast features and library to call the web or rest API’s. Before start i assume you know to installation of angular. Follow the…
What is httpd.conf and httpd-vhost.conf file in apache?
https.conf is main file of apache web server to handle the requests. Apache httpd.conf file generally located at /etc/httpd/conf/httpd, /etc/apache2/ , /etc/apache2/sites-enabled/ in ubuntu. httpd.conf contains the information of server root and port used routing. httpd-vhost contains additional information of…

Difference between $_POST, $_GET and $_REQUEST in PHP
PHP gives there is 3 types of request methods to by which client can send information to server. In this article we will learn difference in get vs post and also in request. So, Methods are as follow $_POST $_GET…

What is Dependency Injection in Angular?
In a simple term we can say dependency injection are created once at the time of initialisation of service or component then throughout the application we can reuse same object without re-initialisation. So, this is clear now advantage of dependency…