Category Archives: PHP

PHP Sanitize Database Input

Aug 27, 2013

Hi all today we are going to see how to sanitize and clean all incoming user data that is going to be used in a..

Read more

PHP 5.5.2 Released

Aug 21, 2013

After a month the PHP Development team has announced the release of PHP 5.5.2 finally About 20 bugs were fixed, including security issue in OpenSSL..

Read more

How to check weather a extension is

Aug 14, 2013

Here in the post we going to see How to check weather a extension is loaded or not in your PHP    //gd represented GD..

Read more

Re-indexing an array in PHP

Aug 07, 2013

Sometimes you need to re-index a numerically indexed array after removing elements from it.  Actually if you remove one or more elements from the middle..

Read more

Adding and Removing Array Elements in PHP

Jul 10, 2013

Sometimes working with arrays, we need to add few extra elements to the array or needs to remove element from array. PHP has some built-in..

Read more

PHP wordwrap() Function

Jun 21, 2013

PHP Wordwrap() Definition  The wordwrap() function wraps a string into new lines when it reaches a specific length. Syntax : Example : Below example is..

Read more