Popular Post: Php

PHP Switch Case Statement

The switch-case is same like if-elseif-else statement, The switch statement is used to perform different actions based on different conditions.

Php Loops Introduction

In Php, Loops are used to execute block of code a specified number of times. Php supports four loops - for, while, do-while and foreach loops.

PHP Functions

A function is a block of code that performs a specific task. In this tutorial, you will learn how to define your functions.

PHP Cookies

In Php, Cookies are a mechanism for storing data in the remote browser and identifying return users. You can set cookies using the setcookie().

PHP Session.

PHP Session is used to store and pass information from one page until user close the website. Session is not stored on the users computer.