Tag Archives: PHP Script

Definition of a class attribute – PHP

Dec 03, 2013

An attribute is know as data members and is used to hold data of a class. The data that it holds are specific to the..

Read more

PHP predefined Magic Constants & usages

Dec 02, 2013

In PHP, a constant is a name or an identifier for a simple value. A constant name starts with a letter or underscore can be..

Read more

Convert or Parse URL into PHP Associative

Nov 26, 2013

Here in this post, we’ll discuss how to convert or parse a URL into PHP associative array containing any of the various components of the..

Read more

PHP – Understanding and Validating Integers

Nov 20, 2013

We have often issues with the validation of integers. As PHP has it’s own functions such as is_int() or is_integer() for validating integers,  but sometimes..

Read more

PHP.ini file

Nov 14, 2013

PHP.ini is a configuration file that is used to customize behavior of PHP at runtime. This enables you to easy administration in Apache web server..

Read more

Difference between visibility:hidden and display:none

Nov 12, 2013

The CSS rules visibility:hidden and display:none both result in the element not being visible, then what is the difference between visibility:hidden and display:none? The css..

Read more