An array stores multiple values in one single variable:
Example
$cars = array("Volvo", "BMW", "Toyota");
What is an Array?
An array is a special variable that can hold many values under a single name, and you can access the values by referring to an index number or name. Continue reading PHP Arrays