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 trialLela Harris
5,111 PointsMy code seems to work but I keep getting the error that I need to check that Student one's GPA is equal to 4.0.
Doesn't the first if statement check that?
<?php
$studentOneName = 'Dave';
$studentOneGPA = 3.8;
$studentTwoName = 'Treasure';
$studentTwoGPA = 4.0;
//Place your code below this comment
function GPA($studentName, $studentGPA){
if ($studentGPA === 4.0) {
echo $studentName . " made the Honor Roll";
}
elseif ($studentGPA != 4.0 || $studentGPA < 4.0 ) {
echo $studentName . " has a GPA of " . $studentGPA;
}
}
GPA($studentOneName, $studentOneGPA);
GPA($studentTwoName, $studentTwoGPA);
?>
2 Answers
Lela Harris
5,111 PointsThanks!
KRIS NIKOLAISEN
54,971 PointsInstead of using a function I think the checker wants you to type out all given variables and logic
if ($studentOneGPA === 4.0) { ...
if ($studentTwoGPA === 4.0) { ...
etc.