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

Its says everything I'm using is okay but there still something wrong and i have tunnel vision and can't seem to find it

Its telling me to go through the preview and see if i can find anything wrong but i don't see anything wrong with my coding and my tunnel vision is preventing me from finding it

palprimes.php
<?php

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

echo "The number " . $checker->number . " ";
if ($checker->isPalprime()) {
  echo "is";
} else {
echo "is not";
}
echo " a Palprime";


?>

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! First off, you're doing fantastic! This was a trickier (and longer) challenge and requires that you know several things to pass it. Your logic is spot on and so is your syntax. However, somehow, you managed to change the very last echo statement from what it was in step 1.

In your last echo statement, you have written:

echo " a Palprime";

But it started out (and should still be):

echo " a palprime.";

Note that the correct echo statement has "palprime" in all lower case and a full stop at the end of the sentence.

Hope this helps! :sparkles: