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

What is the different between require and include since i saw the documentation state that these two are the same?

I did try use include in this situation but it keep ask me to use "include favorites.php", I did follow exactly how the format should like but couldnt pass this question? Any idea to resolve this issues?

index.php
<html>
<head>
<title>A Few of My Favorite Things</title>
</head>
<body>
<?php
include 'favorites.php';
?>
<h1>A Few of My Favorite Things</h1>

</body>
</html>

1 Answer

Jasper Bloem
Jasper Bloem
22,424 Points

Hey WK h,

The main difference is that 'require' will throw a PHP Fatal Error when the file cannot be loaded and the execution will stop. Whilst 'include' will produce a Warning when the file cannot be loaded and the execution will continue.

Your code is right, except that the challenge requires you to include 'favorites.php' below the heading, not above.

Here is the answer!

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

Thank you for the explanation about the difference about the require and include. Really appreciate the explanation, thanks.