Functions in PHP
Posted in PHP Web Development

Functions in PHP | PHP Tutorial Free

Functions in PHP or in any other programming language is a block of statements that are written to perform a specific task. – Functions once…

Continue Reading... Functions in PHP | PHP Tutorial Free
Posted in PHP Web Development

Superglobals in PHP | PHP Tutorial

Superglobals in PHP are some pre-defined variables. These are called “Superglobals” because these are available throughout the all scopes within a script. It means you…

Continue Reading... Superglobals in PHP | PHP Tutorial
Posted in PHP Web Development

Operators in PHP | PHP Tutorial | Learn PHP

Operators in PHP are some character(s) or symbols which are used to perform some tasks on provided values or variables. For example “4+2 = 6”,…

Continue Reading... Operators in PHP | PHP Tutorial | Learn PHP
Posted in PHP Web Development

Constants in PHP | PHP Tutorial

Constants in PHP represents those values which can’t be changed after initialization within a script. Constants in PHP are case-sensitive, by default. Constant names must…

Continue Reading... Constants in PHP | PHP Tutorial
Posted in PHP Web Development

Arrays in PHP | PHP Tutorial | Using Arrays in PHP

Arrays in PHP or in many other languages are used to store multiple values in a single variables. Consider a situation where you want to…

Continue Reading... Arrays in PHP | PHP Tutorial | Using Arrays in PHP
Posted in PHP Web Development

Data Types in PHP | Learn PHP Data Types

Data types in PHP, like any other programming language reflects which type of data is stored in variable. Since, as discussed earlier, PHP is loosely…

Continue Reading... Data Types in PHP | Learn PHP Data Types
Posted in PHP Web Development

Understanding Variables in PHP | PHP Tutorial

Variables in PHP, like in any other programming language, can be treated as a storage for some information. This information or data can be used…

Continue Reading... Understanding Variables in PHP | PHP Tutorial
Posted in PHP Web Development

Echo and Print in PHP | PHP tutorial

In PHP the output can be seen using two statements : echo and print. Echo statement is the most basic way to display output in…

Continue Reading... Echo and Print in PHP | PHP tutorial
Posted in PHP Web Development

PHP Syntax | PHP tutorial | Learn PHP

As we have discussed in earlier sections that PHP and HTML codes can be written in a same file, so there there needs a way…

Continue Reading... PHP Syntax | PHP tutorial | Learn PHP
Posted in PHP Web Development

Setting up the environment | PHP Tutorial

As discussed earlier, PHP is a server-side scripting language and needs a server to execute. We can either purchase a server online to test our…

Continue Reading... Setting up the environment | PHP Tutorial