PHP Object Oriented Programming Part-8: Abstract Class and Methods What is Abstract Class in PHP? Abstract Class in PHP is a special class from which an object can...
PHP Object Oriented Programming Part-7: Static Method, Properties and Late Static Binding What is Static Method and Property? It we want to access any method and property of a class without...
PHP Control Structure Part-4: break, continue, goto What is a break statement in PHP? In PHP or any programming language, if any specific condition is true,...
PHP Object Oriented Programming Part-6: PHP OOP Inheritance What is Inheritance In Object Oriented Programming, the process of sharing some methods and properties from one class to...
PHP Control Structure part-3: PHP for, while, do-while loops What is loop in PHP? The loops in PHP or any programming language is a specific task to be...
PHP Control Structure part 2: What is the if-elseif statement in PHP? What is the if / elseif statement in PHP? PHP or any other programming language else if-elseif is going...
PHP Object Oriented Programming Part-5: Visibility or Access Modifier in PHP What is Visibility or Access modifier in PHP? Accessibility of any property, constant or method is determined by visibility....
PHP Object Oriented Programming Part-4: Constructor Method and Destructor Methods What is the Constructor Method in PHP? The method that automatically executes the first time when creating a new...
What is the comments in PHP? What is the comments in PHP? In this episode you will learn : What is the Comments on PHP...
PHP Control Structure Part I: PHP if, if-else statement What’s the Control Structure on PHP? PHP or any other programming language have control structure, that means control structure...
What is the Number System on PHP? What is the Number System in PHP? How many types of Number System in PHP? What is the Binary...
PHP Object Oriented Programming Part-3: PHP OOP Method Chaining What is Method Chaining in PHP? When many methods are called in a single instruction, in PHP’s term it...
PHP Object Oriented Programming Part-2: Making and Using Class, Object and Class Members What is the rule of declaration a class in PHP? In PHP, it is required to start a class...
PHP Basic Part-2: PHP echo VS print statement PHP echo VS print statement If you want to show any results from the server in PHP, you need...
PHP Basic Part-1: What is PHP? PHP Basic Part-1: What is PHP ? PHP is a server-side scripting language, that allows you to create software...
PHP Object Oriented Programming Part I: PHP OOP Basics Introduction to Object Oriented Programming: To understand object oriented programming, we first need to know what is object? And...