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 trialEilam Maimoni
Courses Plus Student 9,618 PointsCant see What went wrong... Whats the problem with my code?
Can someone plz check my code and tell me whats my problem?
<html>
<head>
<title>A Few of My Favorite Things</title>
</head>
<body>
<h1>A Few of My Favorite Things</h1>
<?php include 'favorites.php'?>
</body>
</html>
1 Answer
Benjamin Larson
34,055 PointsAccording to the PHP Manual: Instruction Separation, I think your code should be fine. While semicolons are required for terminating instructions, it shouldn't be in this instance since it's the last instruction and you've used closing tags for PHP which the manual states: "implies a semicolon".
For whatever reason though, the challenge is requiring the use of the semicolon to terminate that instruction explicitly. It's probably not a bad idea anyway to always include it.
Eilam Maimoni
Courses Plus Student 9,618 PointsEilam Maimoni
Courses Plus Student 9,618 PointsI tried it with a semicolon and it worked! Thx a lot for your help