PHP - Page 38

XAMPP Installation in Windows 7

XAMPP is a package which used to setup the PHP environment by providing the required constellations and Softwares. This package includes Apa ...

April 15th, 2013

PHP Arrays

In PHP, array is an implementation of an ordered Map. A map is an abstract data type of key value pairs. It is an interface, a contract. A m ...

April 15th, 2013

PHP Data Type Conversion

Datatype conversion is the process of changing the type of the variable from one datatype to another. PHP provides various datatypes and the ...

April 14th, 2013

Access MySQL from PHP

Simple short coding example for implementing database operations with PHP and MySQLi ...

April 13th, 2013

Why PHP split() is Deprecated

PHP split() in PHP is deprecated as of its version 5.3.0 and it is removed as of 7.0.0. It was used for splitting a string into an array by ...

April 13th, 2013

PHP Comments

Comments on source code will be useful for denoting the details of the code logic. For example, if we define a function in our program, we s ...

April 13th, 2013

PHP Variable Scope

Variable scope is known as its boundary within which it can be visible or accessed from code. In other words, it is the context within which ...

April 12th, 2013

PHP Object Cloning

Object cloning is creating a copy of an object. An object copy is created using the clone keyword, and the __clone() method cannot be called ...

April 11th, 2013

PHP for Web Development

PHP is the most popular language used for web development. Unarguably the winner in terms of popularity. If you plan to build modern website ...

April 11th, 2013

PHP Hello World

This is the first post on my PHP blog, Phppot. I am starting this blog with enthusiasm, love, and confidence. I hope I will add some value t ...

April 11th, 2013

↑ Back to Top