switch Statement in php
switch Statement Use the switch statement to select one of many blocks of code to be executed . The switch statement is used to perfor...
switch Statement in php
switch Statement Use the switch statement to select one of many blocks of code to be executed . The switch statement is used to perfor...
PHP if else else if Statements
conditional statements are used to perform different tasks bassed in different Conditions. Conditional Statements:- when you write code...
Constants
Constants are like variables except that once they are defined they cannot be changed or undefined. A constant is an identifier (name) for a...
PHP Data Types
Variables can store data of different types, and different data types can do different things. PHP supports the following data types:- ...
echo and print Statements
In PHP there are two basic ways to get output:- echo and print. In this tutorial we use echo statement in almost Examples and we discuss a l...
PHP Variables
Variables are "containers" for storing information. Declaring Variables in php:- Variables in PHP are represented by a d...