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

Hasan Can Terzi
Hasan Can Terzi
5,892 Points

$_GET error

I did everything in video but I couldn't get specific product details. I'm using Netbeans and it says "Do not access superglobal $_GET array directly". What should I do?

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

I tried this;

'''filter_input(INPUT_GET,"id")'''

but this time isset giving an error; "Cannot use isset() on the result of an expression (you can use "null !== expression" instead"

Jonathan Grieve
Jonathan Grieve
Treehouse Moderator 91,252 Points

Hi Hasan,

Could you post your code to the forum so we can have a closer look? Thanks :-)

1 Answer

Hasan Can Terzi
Hasan Can Terzi
5,892 Points

Ok thanks for your support. Actually end of this session, I downloaded project.zip and open with netbeans it works but I will also try your recommend.