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 trialJason Martin
Courses Plus Student 9,316 PointsWhats wrong with my code?
I'm getting this error: "Parse error: syntax error, unexpected 'if' (T_IF)" on this code: function array_category($catalog,$category) { $output = array();
foreach ($catalog as $id => $item) { if ($category == null OR if strtolower($category) == strtolower($item["category"])) { $sort = $item["title"]; $sort = ltrim($sort, "The "); $sort = ltrim($sort, "A "); $sort = ltrim($sort, "An "); $output[$id] = $sort; } }
asort($output); return array_keys($output); } I have reviewed the video and it seems I have followed everything perfectly...so whats wrong?
1 Answer
Carlos Federico Puebla Larregle
21,074 PointsYou have an "if" keyword inside of the conditional statement of another if statement:
if ($category == null OR if strtolower($category) == strtolower($item["category"]))
if($category == null OR strtolower($category) == strtolower($item["category"]))
Omitting it should be enough.
I hope that helps you a little bit.
Jason Martin
Courses Plus Student 9,316 PointsJason Martin
Courses Plus Student 9,316 PointsThanks!