Introduction to PHP arrays and basic functions (count()...)

In general the arrays are variables capable of storing more than one value.   The arrays in PHP are similar to arrays in other language, tha...

Types of arrays in PHP: associative and indexed arrays

There are ways of assigning values to arrays: by association and by indexing.

Arrays sorting in PHP (sort(), asort(), ksort()...)

As with other programming languages, in PHP also sorting arrays and their values have a high importance. An array can be sorted in ascending or descending order and with numerous functions...

Arrays and strings conversions in PHP (implode(), explode())

The arrays may have their values combined or seperated from one another as wanted. These operations are achived by functions listed below. The list of functions used fo...