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 trialAndras Puskas
8,659 PointsPlease help me with the following code...
I have the following code... and I got the Incorrect output error message...:
<?php
$studentOneName = 'Dave';
$studentOneGPA = 3.8;
$studentTwoName = 'Treasure';
$studentTwoGPA = 4.0;
if ($studentOneGPA == 4.0) {
echo "$studentOneName made the Honor Roll";
} else {
echo "$studentOneName has a GPA of GPA";
}
if ($studentTwoGPA == 4.0) {
echo "$studentTwoName made the Honor Roll";
} else {
echo "$studentTwoName has a GPA of GPA";
}
?>
MODERATOR EDIT: Added Markdown to code snippet to make it readable in the Community. Please refer to the Markdown CheatSheet when posting code in the forum.
2 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHi Andras,
You aren't passing the students' GPA value (by using the variable) in the else
statements. The output should have the students' actual GPAs, not just the string "GPA."
Give it another go with this in mind. Everything else looks good. :)
Keep Coding!
Andras Puskas
8,659 PointsDear Douglas and Jason!
Thank you very much! :) I can not believe how unperceptive I was... :)
Have a nice day! Andras
Douglas Palma
12,222 PointsDouglas Palma
12,222 Pointstry this : else { echo "$studentTwoName has a GPA of $studentTwoGPA"; } ? Since the correct output is in $studentTwoGPA this should pass(be sure to do the same for the output for $studentOneName)