PHP Conditional Statements

PHP Conditional Statements

In this example, we will discuss php conditional statements. PHP supports the following conditional statements. if conditional statementif.....else conditional statementif....elseif.....else conditional statementswitch.....case conditional statement The if Statement This is used to executed…
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…