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 trialShawn Conklin
9,078 PointsCan someone tell me why this code challenge won't complete? http://imgur.com/zBGhxa2
I've even tried to just use <?php echo "Mike ?>
<?php
$name = "Mike";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
</head>
<body>
<?php echo $name ?>
</body>
</html>
1 Answer
Julian Gutierrez
19,201 PointsThe challenge might be confused with all that html you've included. You should be fine just including the variable declaration and echo in the same php block.
<?php
$name = "Mike";
echo $name;
?>
Shawn Conklin
9,078 PointsShawn Conklin
9,078 PointsI tried that earlier and it didn't work, but just tried it again and it did, so I don't know. Thank you.