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 trialReginald Beneke
1,053 Pointswhat am I doing wrong
It seems i done everything right.
<?php
//Place your code below this comment
$integerOne =1;
$integerTwo = 2;
$floatOne = 1.5;
$integerOne = $integerOne + 5;
$integerTwo = $IntegerTwo - 1;;
echo $integerOne;
echo $integerTwo;
?>
1 Answer
Rick Gleitz
47,840 PointsHi Reginald,
I'm assuming you are on task 2.
There are two simple problems with your subtraction statement: You have a capitalized integerTwo and you put two semi-colons at the end of that statement.
It doesn't hurt, but you don't need any echo statements at this point (task 2).
Hope this helps!
Adam N
70,280 PointsAdam N
70,280 PointsThe extra semi-colon won't prevent the code from passing.