PHP Session

PHP Session

PHP SESSION VARIABLE Session variable is a special type of array that holds information for an individual user with again unique session ID, like sending information from one web page to another or many pages using a unique identity by session ID for the individual user. It is used to persist (hold on) state information … Read more

PHP Loops

PHP Loops

PHP Loops A loop is a sequence of instructions continuously repeated depending on a Boolean condition. If we want to execute our statement repeatedly, we can implement loop techniques and execute statements execution according to the boolean condition.PHP loop is used to execute a block of code repeatedly until a certain condition is met. PHP … Read more

PHP Data Types

PHP Data Types

PHP DATA TYPES In PHP, a data type specifies the kind of data a variable can hold. Since PHP is a loosely typed language, you don’t need to declare the data type explicitly- the interpreter decides it based on the value. In programming, if we want to use values(like 10,20), then we have to use … Read more

Advantages of PHP

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 ++,

Features of PHP

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.