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 trialBryan Haire
2,971 Pointsadding a file
am I placing the code in the right spot?
<html>
<head>
<title>A Few of My Favorite Things</title>
</head>
<?php include 'inc/favorites.php'; ?>
<body>
<h1>A Few of My Favorite Things</h1>
</body>
</html>
1 Answer
Matt Brock
28,330 PointsIt depends on what the favorites.php file is intended to do. If it simply exposes data, like a list of favorite things, then it's best to include it at the top of the file so you have access to the data throughout the entire file. If its job is to display a chunk of HTML code, then you should include it at the place in your file where you want it to show up.
In your case, it looks like it should be included a little farther down:
<!DOCTYPE html>
<html>
<head>
<title>A Few of My Favorite Things</title>
</head>
<body>
<h1>A Few of My Favorite Things</h1>
<?php include 'inc/favorites.php'; ?>
</body>
</html>
Bryan Haire
2,971 PointsBryan Haire
2,971 Pointsthank you!!! it was my placement that was off
Matt Brock
28,330 PointsMatt Brock
28,330 PointsGreat! Glad you got it working :)