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 trialBrion Ballard
3,807 PointsUse the negation operator to check that $role is NOT EQUAL to "admin"? I am not sure of what I am doing wrong here.
I've tried a few different things, did some searching and I'm still not sure what I'm doing wrong.
<?php
$username = 'sketchings';
//Available roles: author, editor, admin
$role = 'editor';
//Check for username & role
if ($username = true && $role != admin) {
echo "You do not have access to this page. Please contact your administrator.";
}
?>
1 Answer
Mikkel Rasmussen
31,772 PointsHey to check to see a variable is set you use the function isset($variable) and you need to check that the role is not equal to admin you use the not equal comparison after that you need to change admin into a string there you either adds double quotes or single quotes..
There is also something wrong with your echo sentence you have a spelling mistake at the last word it's administratior and not administrator.
http://php.net/manual/en/function.isset.php
So the code should have looked like this:
if (isset($username) && $role != 'admin') {
echo "You do not have access to this page. Please contact your administratior.";
}