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 Basic PHP Website (2018) Adding a Basic Form Objects

Rasbin Rijal
PLUS
Rasbin Rijal
Courses Plus Student 10,864 Points

[ SOLVED ] Stucked in Assigning property a value Task3

Task 3 : I'm stucked. Could someone help me how to proceed further? Thanks!

palprimes.php
<?php

require("class.palprimechecker.php");
$checker = new PalprimeChecker;

echo "The number ## ";
echo "(is|is not)";
echo " a palprime.";

//If you copy paste this code, it is okay to pass 1 and 2. Don't know how to do task 3
?>

1 Answer

Richard Hope
Richard Hope
25,237 Points
<?php

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

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

?>