PHP
PHP Tutorial Index
-
PHP Booleans
Any programmable machine computes depending on the truth values. In computer programming, the truth values can be either True or False. True or False also represented by 1 and 0.…
Read More » -
PHP Loops
In computer programming, Loops are used to iterate or repeat tasks. In the following chapters, we will learn how to operate PHP Loops. Loops in PHP As PHP is a…
Read More » -
PHP if Statement
The IF Statement is a very important feature of any programming language including PHP. Because, when you will drive into the programming world, you will see the footprint of the…
Read More » -
PHP Tags
PHP Tags Every line of PHP code is written inside the PHP tags: <?php //PHP parsable code goes here ?>. If your server (either local or remote) support PHP or…
Read More » -
PHP Echo and Print Statement
Echo and Print is a statement in the PHP programming language. PHP echo statement and the print statement is used for displaying a program output of a specific block of code. Any function…
Read More » -
PHP Operator Types
The PHP Operator In general, an operator is a sign that performs some task on different value and variable in order to feedback the desired result. Like any other programming languages,…
Read More » -
PHP Constant Types
PHP constants are basically simple functions or names that can store a static value. Programs can execute the fixed value stored in a constant. Constants are static, not dynamic. Means,…
Read More » -
PHP Data Types
Data types in PHP indicates the kinds of data supported in PHP. PHP has total eight kinds of data types. All the PHP data types different from each other. Data…
Read More » -
PHP Variable Types
Variable is a container for storing programming data. The stored data can be used later at multiple locations in the program file by calling the variable name. It is a…
Read More » -
PHP Syntax
Every programming language/scripting language/markup language has its own unique syntax. Every developer uses those syntaxes while developing a web application or desktop application or mobile application. Like all other languages,…
Read More » -
Environment Setup for PHP Development
In the previous tutorial you have learned, PHP is a server-side scripting language. That’s why PHP must have a web server environment in order to execute and show output. That’s…
Read More » -
PHP Tutorial
What is PHP? PHP stands for hypertext preprocessor. It is a widely used server-side scripting language used by millions of web developers. It is specially designed for web development purposes.…
Read More »