Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Cursos7 Team
4,745 PointsChallenge Task 4 of 7
<?php
require_once("class.palprimechecker.php"); $checker = new PalprimeChecker(); $checker ->number("17");
echo "The number " . $checker; echo "(is|is not)"; echo " a palprime.";
?>
<?php
require_once("class.palprimechecker.php");
$checker = new PalprimeChecker();
$checker ->number();
echo "The number " . $checker->number("17");
echo "(is|is not)";
echo " a palprime.";
?>
2 Answers

Placid Rodrigues
12,630 PointsHi,
You need to assign the number 17 to the number property of $checker object. Like this:
$checker->number = 17;
Then echo that property in the echo line as shown below:
echo "The number " . $checker->number;
Hope that helps.

Matt Trask
10,027 PointsWhats the problem you are facing?