PHP Operators

PHP Operators

In this example you will learn how to manipulate or perform the operations on variables and values using operators in PHP. What are Operators in PHP Operators are symbols that…
PHP Strings

PHP Strings

In this article you will learn how to store and manipulate strings in PHP. What is String in PHP A string is a sequence of letters, numbers, special characters, and…
PHP Datatypes

PHP Datatypes

Today we will learn PHP Datatypes. PHP supports the following Datatypes: String Integer Float (floating-point numbers - also called double) Boolean Array Object NULL Resource To create variables, these data…
HTTP Status Codes

HTTP Status Codes

In this article we will learn the HTTP Status Codes step by step The status code contains information on the request's state. When a web page or other resource doesn't load properly,…
encapsulation in java

Java Encapsulation

Binding (or wrapping) code and data together into a single unit are known as encapsulation. For example, a capsule is wrapped with different medicines. Java Encapsulation reduces the code redundancy…
abstraction in java

Java Abstraction

Hiding internal details and showing functionality is known as abstraction. For example phone call, we don't know the internal processing. The user will have the information on what the object…
polymorphism in java

Java Polymorphism

If one task is performed in different ways, it is known as polymorphism. For example: to convince the customer differently, to draw something, for example, shape, triangle, rectangle, etc. In…
inheritance in java

Java Inheritance

We will one of the most important concept of JAVA OOP is java inheritance. When one object acquires all the properties and behaviors of a parent object, it is known…
objects and classes in java

Java Objects and Classes

In this article, we will learn about objects and classes with real-life examples. Java objects and classes are the main components of JAVA. Object Everything in Java is associated with…