- Creating the Catalog Array 4:43
- Adding Elements and Specifying a Key 3:20
- Introducing Arrays 4 objectives
- Associative Arrays 5:30
- Associative Arrays 7 objectives
- Displaying All Items 3:30
- Multidimensional Arrays 8 questions
- Creating the Display Function 4:56
- Working with Functions 8 questions
- Random Fun with Arrays 3:36
- Introducing Functions 1 objective
- Displaying Categories 5:50
- Sorting Array Items 6:05
- Item Details and Redirection 5:35
- Array Keys 2 objectives
- Displaying Item Details 5:55
- More Excitement With Arrays 6 questions
- Review Basics 3 objectives
- Wrapping It Up 0:45
Quiz Question 1 of 8
What year will this block of PHP code display?
<?php $movies[] = array( "title" => "Star Wars", "year" => 1977 ); $movies[] = array( "title" => "The Empire Strikes Back", "year" => 1980 ); $movies[] = array( "title" => "Return of the Jedi", "year" => 1983 ); echo $movies[1]["year"]; ?>
Choose the correct answer below: