Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Francois Jack
2,547 PointsHello, It keeps asking if I left a break off, I am not sure about the isset function if it needs to change
Hello, It keeps asking if I left a break off, I am not sure about the isset function if it needs to change. Thank you for your assistnace
<?php
//Available roles: admin, editor, author, subscriber
if (!isset($role)) {
$role = 'subscriber';
}
//change to switch statement
switch ($role) {
case 'admin';
echo 'As an admin, you can add, edit or celete any post';
break;
default:
echo "You do not have access to this page. Please contact your administrator.";
break;
}
?>
3 Answers

Jason Anello
Courses Plus Student 94,592 PointsHi Francois,
Your echo string isn't an exact match for what the challenge wants.
It should be 'As an admin, you can add, edit, or delete any post.'
I would copy and paste that in. You were missing a comma, period, and had a typo.
Also, case 'admin';
should have a colon at the end and not a semi-colon

Nick Wilke
3,116 PointsYou don't need a Break if you add the default

Francois Jack
2,547 Pointsoh thank you my error thanks for pointing that out as well with the break I was not sure. thank you for the assistance