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 Build a Basic PHP Website Listing and Sorting Inventory Items Review Basics

inserting an include() command to pull data from another file

This is the task: I have placed another file on the server named "flavor.php" that contains this information. Before the echo statement below, add a PHP command to include that file.

I have tried to insert the following code: <?php
include("inc/flavor.php") ?>

But it doesn't work, yet the course has so far shown me this is the way it should be done. If the path isn't specified, how do i find the path?

output.php
<?php
include("inc/flavor.php");
echo "Hal's favorite flavor of ice cream is ____.";

?>

1 Answer

If the path isn't specified, assume the files are in the same folder, so the path would be the file name: "flavor.php".

Thank you