PHP Multidimensional Array

PHP multidimensional array is an array of arrays. As the name suggests, every element in this array can be an array and they can also hold other sub-arrays within. A … Read more

PHP Associative Array

PHP allows you to associate name/label with each array elements using => symbol. It is also called key-value pair array. Creating PHP Associative Array  array() function is used to create associative … Read more

PHP Indexed Array

PHP Indexed Array is simple array with a numeric key. PHP indexed array is also known as numeric array. Indexed Arrays are arrays in which the elements are ordered based … Read more