Category Archives: Web Development

Automatically set permission to various file types

Nov 29, 2013

Set file permissions with .htaccess, this is a great method for ensuring the CHMOD settings for various file types. Apply the following rules in the..

Read more

A Quick view on PHP magic methods

Nov 26, 2013

Let’s have a quick view on magic methods, as sometimes it looks like it will hard to use these function but reality is these are..

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

Remove index.php from CodeIgniter URL Path using

Nov 15, 2013

If you are using Codeigniter (PHP Framework) you are noticed that by default index.php will be included with your URL. But you can easily remove..

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