This document provides instructions for a PHP lab assignment to create a book catalog using arrays. The objectives are to:
1. Create an associative array to represent a single book with title, author, year, and genre.
2. Create a multidimensional array to store multiple books and display the entire catalog using a foreach loop.
3. Create a function to display books of a specific genre by passing the genre as a parameter and using a foreach loop to iterate through the books and output those matching the genre.