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

Sajid Latif
seal-mask
.a{fill-rule:evenodd;}techdegree
Sajid Latif
Full Stack JavaScript Techdegree Student 22,368 Points

Not getting it :(

Can anyone help here?

palprimes.php
<?php

require_once("class.palprimechecker.php");
$checker = new PalprimeChecker();
PalprimeChecker->number(17);






echo "The number " . $checker->number;
echo "(is|is not)";
echo " a palprime.";

?>

2 Answers

simhub
simhub
26,543 Points

Remember to :"assign that 'PROPERTY' a value of 17" So your code should be :

$checker->number = 17;

             And  Not!

$PalprimeChecker->number(17);

simhub
simhub
26,543 Points

After assigning that property (number) a value of 17 that value will stay until you change it

so

echo "The number ". $checker->number;

will be fine!