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 trialKyran Parker
486 PointsI typed in $a = 5; just like it's shown in video. Why is the workspace telling me I have a syntax error?
I followed the video exactly but the workspace console is telling me I've done it wrong but I don't know what or why.
1 Answer
christopher foley
459 PointsI was having the same problem. Below is the code I was using. I will use <<<< to point out my mistake and hopefully it can help anyone who might need it.
<?php $num_one = 1; $num_two = 2; $num_three = 3;
/var_dump( $num_one ); var_dump( 1 ); var_dump( "1" ); var_dump( $num_one + $num_two - $num_three );/
$distance_home = 1.2; $distance_work = 2.5;
var_dump($distance_home + $distance_work + $num_three + .3) <<<< I was missing ; at the end of this var_dump.
$a = 5; $b = 10;
var_dump($a * $b); var_dump($a / $b); ?>
Mark Sebeck
Treehouse Moderator 38,304 PointsMark Sebeck
Treehouse Moderator 38,304 Points$a = 5; is correct PHP syntax. Can you share the rest of your code? Sometimes syntax errors are caused by other lines. Something like a missing ; or something