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 trialJaime Rios
Courses Plus Student 21,100 PointsWhat is wrong with the code?
I'm stuck with the challenge, it says that I'm failing in assigning the value to an object's property.
2 Answers
Jaro Schwab
8,957 PointsHey.
You need to assign the value of 17 to the number propertie of the Paliprimechecker class. Here's the code that should work.
<?php
include_once 'class.palprimechecker.php';
$checker = new PalprimeChecker;
$checker->number = 17;
echo "The number ".$checker->number;
echo "(is|is not)";
echo " a palprime.";
?>
Jaime Rios
Courses Plus Student 21,100 PointsThanks, this is what I was doing wrong
php<?php
include_once 'class.palprimechecker.php';
$checker = new PalprimeChecker;
$checker-> 17;
echo "The number ".$checker->number;
echo "(is|is not)";
echo " a palprime.";
?>
```
Kevin Korte
28,149 PointsWhat's your code look like?
Jaime Rios
Courses Plus Student 21,100 PointsMy bad, I just commented the post.
Jaime Rios
Courses Plus Student 21,100 PointsJaime Rios
Courses Plus Student 21,100 Points