Posted in PHP Web Development

while loop php | php tutorial | learn php online

– While loop in php is used to execute a statement or set of statements while the condition evaluates to true. – while loop is…

Continue Reading... while loop php | php tutorial | learn php online
Posted in PHP Web Development

loops in php | php tutorial | learn php

Sometimes, within our code, we need to execute a set of statements multiple times which may or may not be based on particular condition. So…

Continue Reading... loops in php | php tutorial | learn php
Posted in PHP Web Development

foreach loop in php | PHP Tutorial | learn php

– The foreach loop in php works only with Arrays or Objects – Foreach loop in php used to loop through various values within an…

Continue Reading... foreach loop in php | PHP Tutorial | learn php
Posted in PHP Web Development

If Statement | PHP Tutorial

Conditional statements in PHP, like any other programming language helps us to perform actions based on some type of conditions. These conditions can be logical…

Continue Reading... If Statement | PHP Tutorial
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