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 trialHarry Nikolov
6,131 Points5/7 What the HELL?!?
I have absolutely NO clue what to do here.
if (isPalprime($checker->number)) {
echo "is";
} else {
echo "is not";
}
Something along these lines?
1 Answer
Harry Nikolov
6,131 PointsEnded up reading the whole video transcript and understood my error :D
<?php
require_once ('class.palprimechecker.php');
$checker = new PalprimeChecker;
$checker->number = 17;
echo "The number " . $checker->number . " ";
if ($checker->isPalprime($checker->number)) {
echo "is";
} else {
echo "is not";
}
echo " a palprime.";
?>