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 trial

PHP Build a Simple PHP Application Wrapping Up The Project Objects

Cursos7 Team
Cursos7 Team
4,745 Points

Challenge 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.";

?>

palprimes.php
<?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
Placid Rodrigues
12,630 Points

Hi,

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
Matt Trask
10,027 Points

Whats the problem you are facing?