PHP Tutorial
PHP Comments
PHP comments can be used to describe any line of code so that other developer can understand the code easily. It can also be used…
PHP Operators
PHP Operator is a symbol i.e used to perform operations on operands. For example: $num=10+20;//+ is the operator and 10,20 are operands In the above example, + is the binary + operator,…
PHP Data Types
PHP data types are used to hold different types of data or values. PHP supports 8 primitive data types that can be categorized further in…
PHP Constants
PHP constants are name or identifier that can’t be changed during the execution of the script. PHP constants can be defined by 2 ways: Using…
PHP Variables
A variable in PHP is a name of memory location that holds data. A variable is a temporary storage that is used to store data…
PHP Example
It is very easy to create a simple PHP example. To do so, create a file and write HTML tags + PHP code and save…
Install PHP
To install PHP, we will suggest you to install AMP (Apache, MySQL, PHP) software stack. It is available for all operating systems. There are many…
What is PHP
PHP is a open source, interpreted and object-oriented scripting language i.e. executed at server side. It is used to develop web applications (an application i.e….