Tag Archives: Programming

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

Multiple Headers In PHP

Jun 20, 2013

With PHP, you can send multiple HTTP headers with file_get_contents() . you can also send information such as HTTP_ACCEPT, HTTP_ACCEPT_LANGUAGE, and HTTP_CONNECTION with file_get_contents(). In..

Read more

How To Convert .xsd File Into Array

Jun 19, 2013

We could not convert .xsd file into php array to convert that we should first convert the .xsd file into xml file then finally parse..

Read more

How to make a link with simple

Jul 21, 2012

With these simple instructions, you can add a link to another web page using HTML. Steps to make a link with simple html code 1.Open..

Read more