Today we will discuss how to create an MVC sample application in PHP. Because nowadays in PHP everybody creates a class-based structure of the application and the main problem in class-based that all the things are in the same function(such as view, model and action). So with the help of MVC, we will separate all […]
Php
How to Create a Simple REST API With Slim Framework
This tutorial will show you how to create a REST API using Restful API Framework SLIM for any web or mobile application. These REST Endpoints can be used in any Android, IOS, Angularjs, or other application.
PHP Access Modifiers – Public, Private and Protected
In this tutorial, we are going to learn about the Complete Tutorials of PHP Access Modifiers with Example. To set the access rights for class methods and variables we use access modifiers which are nothing but PHP keywords.
Fatal error: Class Soap Client not found
Today, I was creating a web service through SOAP Client in PHP. Unfortunately, I got below fatal error “Class ‘SoapClient’ not found” on applications. I spent some time on Google to find a solution and found a working solution.
Create Logfile and Write Error Log in PHP
in this tutorial, I’ll discuss How to create php Log File using PHP. This quick tutorial help to create logging functionality for your PHP application.