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 trialJuliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsChallenge task 3 of 3 Build a Simple PHP Application
I'm doing a refresher on this course and I am stuck once again.
What am I missing?
Thanks!
<?php
function mimic_array_sum($array){
$sum = 0;
foreach ($array as $element){
$sum = $sum + $element;
}
return $sum;
};
$sum = mimic_array_sum($palindromic_primes);
echo $sum;
$palindromic_primes = array(11, 757, 16361);
?>
2 Answers
Erik McClintock
45,783 PointsJuliette,
You just need to move your $sum variable and the echo statement below the $palindromic_primes array, and you will be good to go!
<?php
// all you need to do is move your $sum variable and its echo statement below the $palindromic_primes array, like so!
function mimic_array_sum($array){
$sum = 0;
foreach ($array as $element){
$sum = $sum + $element;
}
return $sum;
};
$palindromic_primes = array(11, 757, 16361);
$sum = mimic_array_sum($palindromic_primes);
echo $sum;
Everything else with your code is fine :)
Erik
Jeff Lemay
14,268 PointsYour pal-prime variable needs to be set before you call a function on it.
Juliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsJuliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsAh, that's it. Thanks Erik! Even I got through it the first time (with help), but this time my brain turned into scrambled eggs. Next time will be better:-)