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 trialSajid Latif
Full Stack JavaScript Techdegree Student 22,368 PointsNot getting it :(
Can anyone help here?
<?php
require_once("class.palprimechecker.php");
$checker = new PalprimeChecker();
PalprimeChecker->number(17);
echo "The number " . $checker->number;
echo "(is|is not)";
echo " a palprime.";
?>
2 Answers
simhub
26,544 PointsRemember to :"assign that 'PROPERTY' a value of 17" So your code should be :
$checker->number = 17;
And Not!
$PalprimeChecker->number(17);
Sajid Latif
Full Stack JavaScript Techdegree Student 22,368 PointsThanks a lot.
What about that
echo "The number " . $checker->number;
echo "(is|is not)";
echo " a palprime.";
simhub
26,544 PointsAfter assigning that property (number) a value of 17 that value will stay until you change it
so
echo "The number ". $checker->number;
will be fine!