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 trialCursos7 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?