Category Archives: Web Development

Get all images from a HTML document

Dec 11, 2013

Sometimes we have to get the images from an HTML page just like Facebook does when a link is posted. You can easily get images..

Read more

Marquee tag in HTML and its attributes

Dec 10, 2013

The HTML marquee tag provides a way for browsers to creates a scrolling effect (can be tailored to include any HTML content) vertically or horizontally..

Read more

How to achieve and use Polymorphism in

Dec 10, 2013

Polymorphism is a Greek word that means “many forms”. In object-oriented programming, polymorphism is a mechanism by which objects of different types can process data..

Read more

Swapping Array Keys and Values

Dec 06, 2013

If you want interchange the keys and values of an associative array. It’s very easy, just use PHP’s array_flip() function which perform a very specialized..

Read more

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

Secure your PHP script by hiding extensions

Dec 02, 2013

In general, security by obscurity is one of the weakest forms of security. Suppose If I were exploiting a site, I wouldn’t check what scripting..

Read more