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 trialTianni Myers
10,453 PointsNeed help with If, Else Statements.
A quick search in Google and I could copy the code to pass this challenge, but I am very curious and truly want to understand the logic behind this program. Why does this code not work? I donβt get it.
<?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 the GPA of'. $studentTwoGPA;
}
?>
1 Answer
Shawn Rieger
9,916 PointsThe challenge is looking for a specific output. In your case, you have no space after or before your variables. So for instance, your first if then would print... Davehas a GPA of3.8
instead of Dave has a GPA of 3.8
Tianni Myers
10,453 Pointsooooohhh okay. Thank you so much.
Pablo Zirilli
Courses Plus Student 3,327 PointsPablo Zirilli
Courses Plus Student 3,327 PointsHi there!... try to change ' for " in your "if echo's" like this:
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; }
?>
and let me know. Grettings!