What is PHP? PHP is a popular open source server-side scripting language which is used primarily for web development. PHP is a recursive acronym for Hypertext Preprocessor. It was earlier called as Personal Home Page. PHP scripts can only be executed on a server which has PHP installed and the results are then sent to […]
PHP5 Installation and Environment Setup
Prior to developing and running PHP programs and applications we need to first setup and configure the environment for it. This can be done using the following methods : Setting up a local PHP environment If you want to develop and run PHP applications on your local PC you have to set up the environment […]
PHP Syntax Overview
Like any other programming language PHP has a set of syntax rules which we need to follow while programming in the PHP language. Learning syntax rules is important because it will help programmers increase their speed of programming, accuracy and will help them master the language quickly. PHP files commonly have a .php as file […]
Constants in PHP
This article provides an overview of constants, naming conventions, scope, constant functions and a clear understanding of the usage of constants.
Operator Types
PHP language provides us with a range of operators which allow us to perform diverse operations or actions on variables or values.
Datatypes in PHP
Learn about PHP datatypes and their uses. With in-depth coverage and working code snippets get a thorough understanding of the different datatypes.
PHP Variables
Learn about the rules of usage of variables in PHP . PHP scope types ,variable naming and usage rules are covered exhaustively.
PHP Decision Making
Decision-making statements play a crucial role in controlling the flow of execution . Learn in detail about the different decision making statements.
PHP Loops
PHP loops allow you to execute selected statements repeatedly based on the outcome of some test conditions. Read all about the different loop statements.
PHP Arrays
In PHP, an array is a data structure or a special variable which stores multiple elements of similar types like integers, strings, or even objects.
PHP Strings
A string is a sequence of characters which are enclosed by quotes. Strings consist of characters which may be letters, numbers or special characters.
PHP Functions
A function is a block of code consisting of a set of statements which generally performs a specific task and has a specific purpose in a program.
PHP File Inclusion Using Require and Include
PHP provides two ways to include other files into the current program. They are the include()/include_once() and the require()/require_once functions.
GET and POST Methods’
PHP provides us with 2 methods to capture the data submitted in forms to pass through pages. The two methods are the GET and the POST methods.