January 24th, 2019
Create an implementation of PHP CRUD using OOPS with MySQLi in MVC by following and downloading example project presented with this article.
October 1st, 2013
We are going to see a surprise in this PHP tutorial. We all know about overloading and it is a basic concept in OOPS and we have beaten it e
September 20th, 2013
Generally, for each PHP user defined function, it contains two portions, such as function definition and function call. In some special case
September 18th, 2013
PHP access modifiers are used to set access rights with PHP classes and their members that are the functions and variables defined within th
September 4th, 2013
While working with PHP object model, we need to set properties of that object, before using it as a reference to access class member functio
August 28th, 2013
In PHP, the self and this keyword are used to refer class members within the scope of a class. The class members can be either variables or
July 3rd, 2013
As like as other programming languages, like, Java, the final keyword is added into PHP as of its version 5. This keyword is used as a modif
June 28th, 2013
In PHP, the interface blocks which declares set of functions to be defined with a class to implement this interface. A class can extend more
June 18th, 2013
Inheritance is one of the popularly used Object Oriented Programming features. It allows having shared properties and functions between rela
April 24th, 2013
PHP supports both procedural and Object Oriented programming. Object Oriented methodologies will be useful and effective while working with