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 PHP Basics Daily Exercise Program Conditionals

The Error message is telling me Use the variables to display the message... I'm using the "echo" keyword. What's wrong??

Please help me figure out what I missed here.

index.php
<?php
$studentOneName = 'Dave';
$studentOneGPA = 3.8;

$studentTwoName = 'Treasure';
$studentTwoGPA = 4.0;

//Place your code below this comment
if($studentOneGPA === 4.0){
    echo $StudentOneName . ' made the Honor Roll';
}else{
  echo  $StudentOneName . ' has a GPA of ' . $StudentOneGPA ;
}

if($studentTwoGPA === 4.0){
    echo $StudentTwoName . ' made the Honor Roll';
}else{
  echo $StudentTwoName . ' has a GPA of ' . $StudentTwoGPA ;
}

?>
Alex Motter
Alex Motter
2,266 Points

It looks like your main problem is your use of capitalization. $studentTwoName != $StudentTwoName, in other words, your variables are not matching up. Remove the capital S from all of your varibles.

Also, it may be possible that you do not need to use ===, only == should work as well.

<?php
$studentOneName = 'Dave'; 
$studentOneGPA = 3.8;

$studentTwoName = 'Treasure'; 
$studentTwoGPA = 4.0;

//Place your code below this comment
if ($studentOneGPA == 4.0) {
    echo $studentOneName . ' made the Honor Roll';
} else {
  echo  $studentOneName . ' has a GPA of ' . $studentOneGPA ;
}

if ($studentTwoGPA == 4.0) {
    echo $studentTwoName . ' made the Honor Roll';
} else{
  echo $studentTwoName . ' has a GPA of ' . $studentTwoGPA ;
}

?>

2 Answers

nevermind I figured it out thanks Alex!

So I corrected my variables and changed my operator to == and now the error message is saying "INCORRECT OUTPUT" Help!