Intro to PHP Arrays - PHP Virgin

Check out the full course: To really go all the way with PHP you have to understand arrays. An array is basically a container that groups values together. Let’s say we want to keep track of my measurements, my bust, waist, and hips. In this not-so-hypothetical example, we could create some variables, $bust = 32, $waist = 24, and $hips = $32. That’s not too bad, but what if we started adding more things, like my height, weight, eye color, hair color, and shoe size (
Back to Top