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

Jaime Rios
PLUS
Jaime Rios
Courses Plus Student 21,100 Points

What 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.

Jaime Rios
Jaime Rios
Courses Plus Student 21,100 Points
<?php

include 'class.palprimechecker.php'; 
$checker = new PalprimeChecker;


echo "The number " . /*It is suppossed to be here*/ ." ";
echo "(is|is not)";
echo " a palprime.";

?> ```

2 Answers

Hey.

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
Jaime Rios
Courses Plus Student 21,100 Points

Thanks, 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
Kevin Korte
28,148 Points

What's your code look like?