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

Wayne Comber
Wayne Comber
8,169 Points

Problem with Challenge task 5

Hi there,

I cant see where I am going wrong with this code to solve task 5.

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

echo " a palprime.";

...... Any help would be appreciated

1 Answer

Ron McCranie
Ron McCranie
7,837 Points

You're missing a closing parethesis ")" after isPalprime()

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

?>
Wayne Comber
Wayne Comber
8,169 Points

Thanks. That was it. I looked that code for ages, but still missed it.