Category: PHP Tutorial

PHP Session
PHP Tutorial

PHP Session

PHP SESSION VARIABLE Session variable is special type of array that holds information for individual user again unique session id like sending information from one web page to another or many pages using unique identity by session id for individual user. It is used to persist (hold on) state information between page requests. session variable […]

Rekha Setia 
PHP Loops
PHP Tutorial

PHP Loops

Loop is a sequence of instructions continuously repeated depending on the boolean condition. If we want to execute our statement repeatedly, we can implement loop techniques and put statements execution according to the boolean condition. PHP Loop Types While Loop For Loop Do While PHP While Loop While loop is the most accessible loop to […]

Rekha Setia 
PHP Data Types
PHP Tutorial

PHP Data Types

PHP DATA TYPES In programming, if we want to use values(like 10,20) then we have to use data type(int, float, char) to represent its base type as real, integer, character, or Boolean that determines the possible values for that type. We can perform an action on values of that type. The meaning of data and […]

Rekha Setia 
Advantages of PHP
PHP Tutorial

Advantages of PHP

A PHP application that uses a database to store information (MySql in particular) is always faster than an application built on files. The fact is that databases are written in C ++,

Rekha Setia 
Features of PHP
PHP Tutorial

Features of PHP

Probably PHP’s most powerful and significant aspect is the level of interaction with databases. Building a web application that works with a database is fairly straightforward.

Rekha Setia