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 trialJake Steel
5,048 PointsPHP Basics Integer Variable
Create Two Integer Variables - The first will be named $integer_one with a value of 1 and the second will be named $integer_two with a value of 2
can anyone please help me. Not sure what I am doing wrong. I am on challenge 1 of 7 regarding integer variables.
<?php
//Place your code below this comment
$integer_one= "1"
$integer_two= "2"
?>
1 Answer
anthony crowell
Courses Plus Student 10,953 PointsHi first you don't need the double quotes for a variable unless you want to use them as a string, also you should put semi colon's at the end to tell the program your done with that line.
Jake Steel
5,048 PointsJake Steel
5,048 PointsThanks so much Anthony, I did figure this out and forgot to update or take down the post. Thanks for responding though, much appreciated.