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 Item Details

where did the data "id" come from that's stored in the variable $id and the variable $item?

it isn't very clear to me why suddenly we have data "id"? from what i understood, we can only get a data that's exist in our array? therefore, this line of code confused me :

$id = $_GET["id"]; if (isset($catalog[$id])) { $item = $catalog[$id]; }

1 Answer

Steven Parker
Steven Parker
229,732 Points

The $_GET array is an associative array of variables that were passed to the current script via the URL parameters (the "query string"). This code takes the value that was passed in with the name "id" and puts it into the $id variable.

Then that value is used as the index into the $catalog array.