PHP Operators
An operator is a special symbol that tells the compiler to perform some task. PHP offers various operators to perform different tasks. We can divide them into the following categories based onRead More…
An operator is a special symbol that tells the compiler to perform some task. PHP offers various operators to perform different tasks. We can divide them into the following categories based onRead More…
The scope of a variable determines it’s accessibility in the program to refer it. PHP has four different variable scopes: Local Global Static Parameter Local Scope A variable declared within a PHPRead More…
A variable is a named memory area that can hold values or expression. We can consider a variable as a container that stores value. PHP variables are used to hold values orRead More…
A data type refers to the type of data that a variable can store. PHP offers eight various data types to work with. They are as follow: Integer number Float-point number StringRead More…
To develop a website using PHP we will require the following software packages: Wamp server Editor Wamp Server: To develop and test website we need one server. We can either use wampRead More…
A PHP is an open source programming language through which we can develop web application. Previously it was known as Personal Home Page but today it is well known as Hypertext Preprocessing.Read More…