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 trial

PHP PHP Basics PHP on the Web Including PHP

adding a file

am I placing the code in the right spot?

index.php
<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

It 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>

thank you!!! it was my placement that was off

Great! Glad you got it working :)