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 PHP Basics Daily Exercise Program True PHP

Hi, i can't find my mistake :(

<?php $a === "5"; //Place your code below this comment $isBoolean = true; $isIdentical; var_dump ($isIdentical = $a);

?>

index.php
<?php
$a === "5";
//Place your code below this comment
$isBoolean = true;
$isIdentical;
var_dump ($isIdentical = $a);

?>

1 Answer

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

Hi there, Neven Shtiliyanov! Looks like you're off to a good start. However, you were not meant to alter the first line. The first line should remain as $a + 5;. Your $isBoolean looks fine.

The next thing it's asking for is a variable that holds the result of asking if $a, which should still be the integer 5 is identical to the string "5". You will not need a var_dump.

For $isIdentical it's looking for:

$isIdentical = $a === "5";

This, however, assumes that you have not altered the first line of the challenge.

Hope this helps! :sparkles: