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 Build a Basic PHP Website (2018) Listing and Sorting Inventory Items Displaying All Items

syntax error, unexpected '"stars"' (T_CONSTANT_ENCAPSED_STRING), expecting ']' in /home/treehouse/workspace/inc/data.php

Here is my code: <?php

This is the associated array that keeps breaking. it breaks on the line that reads "stars" => [

$catalog[201] = [ "title" => "Forrest Gump", "img" => "img/media/forest_gump.jpg", "genre" => "Drama", "format" => "DVD", "year" => 1994, "category" => "Movies", "director" => "Robert Zemeckis", "writers" => [ "Winston Groom", "Eric Roth", ] "stars" => [ "Tom Hanks", "Rebecca Williams", "Sally Field", "Michael Conner Humphreys", ] ]

Corey Johnson
Corey Johnson
Courses Plus Student 10,192 Points

Hello Eric,

You have some extra commas and you are missing a comma. It is easier to see when you use indenting. Here is the corrected code. I hope this helps.

$catalog[201] = [
        "title" => "Forrest Gump",
        "img" => "img/media/forest_gump.jpg",
        "genre" => "Drama",
        "format" => "DVD",
        "year" => 1994,
        "category" => "Movies",
        "director" => "Robert Zemeckis",
        "writers" => [
                "Winston Groom",
                "Eric Roth"
        ],
        "stars" => [
                "Tom Hanks",
                "Rebecca Williams",
                "Sally Field",
                "Michael Conner Humphreys"
        ]
];