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

Why doesn't this work?? I can't figure this out, plz help!

How do I do this challenge? Help me please!!

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

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

//Place your code below this comment
$name = $studentTwoName;
$nameGPA = $studentTwoGPA;
if ($nameGPA == 4.0) {
    echo "$name made the Honor Roll";
} elseif {
    echo "$name has a GPA of $nameGPA";
?>

1 Answer

Tim Knight
Tim Knight
28,888 Points

Hi there!

There are a few things that should help. First you don't need to create any new variables but you will need to do the conditional check twice to meet the objective of the exercise.

Here's an example of checking just the first student.

<?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;
}

// Add the same check for the second student here.
?>

You'll notice that the echo statement has the variables outside of the string and uses concatenation to tie the variable and the message together. You also don't need an else if since the else will work just fine for you in this case.

You'll want to repeat this check again for the second student as well.