In the previous chapters, you learned how to deal with PHP variables. In this chapter, we will teach you how to create and manage PHP arrays.
Say you need to hold multiple values of a similar type in a single variable, without creating additional variables to store those values. How would you do this? By using PHP arrays.
PHP Indexed and Associative Arrays
PHP Multidimensional Arrays
PHP Array Functions
PHP Indexed and Associative Arrays
Arrays are one of the most versatile and useful elements ...