Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

Br3eZy [Braah!]
seal-mask
.a{fill-rule:evenodd;}techdegree
Br3eZy [Braah!]
Full Stack JavaScript Techdegree Student 4,263 Points

I need help with PHP arrays

I don't understand the principle of Arrays what it can be used for, so I have no idea how to practice it, so I can't use it properly.

I'd like to know what it is used for and how to make it work.

Arrays, Associative arrays, multidimensional arrays

what is the difference between all of them and what makes them so useful in PHP

1 Answer

https://www.w3schools.com/php/php_arrays.asp

An array stores multiple values in one single variable:

In PHP, there are three types of arrays:

Indexed arrays - Arrays with numeric index
Associative arrays - Arrays with named keys
Multidimensional arrays - Arrays containing one or more arrays