From the course: PHP for WordPress

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Solution: Loop through an array of information

Solution: Loop through an array of information - PHP Tutorial

From the course: PHP for WordPress

Start my 1-month free trial

Solution: Loop through an array of information

(upbeat music) - [Instructor] All right, let's go through the solution to the last challenge. You could see we have the array on screen here, so let's start. Of course, we want to use a foreach loop for this task because we have an associative array. So I'm going to say foreach tmnt as, and then we have the turtle's name and a list of attributes. So I'm going to say turtle, arrow, and then I'll say atts for the attributes. So the first thing we want to do is print the turtle's name in bold. Since we can use HTML embedded directly into our PHP, I'm going to say echo p, b for bold, then I'll say turtle. Then I'll say colon and b and then a space. The space is important. Remember that we need to explicitly state any spaces we want in our PHP code. Now we want a comma-separated list of the attributes. So we'll actually need another foreach loop here. Foreach atts as, I'll just say attr for attribute, and then we'll…

Contents