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

Alan Jeronimo
Alan Jeronimo
1,220 Points

It's NOT working for some reason :-/

This challenge is saying that I am doing it wrong but I'm NOT.

Question:

Challenge Task 1 of 1

Within the current directory, I have created a file named favorites.php that displays a few of my favorite things. Add the php code blocks and include that file so that my favorite things display below the heading.

The RESULT of my code:

A Few of My Favorite Things

Color: red

Ice Cream: black cherry

Game: Ms Packman

I know that this challenge is very picky but I can't go on without doing it the way it wants me to do it. So I need your help and if I should do it in a better way just let me know! I'm here to learn!!

Thank you very much :-)

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

Antonio De Rose
Antonio De Rose
20,884 Points
<html>
<head>
<title>A Few of My Favorite Things</title>
</head>
<body>
<h1>A Few of My Favorite Things</h1>
<?php include "favorites.php";?>//add the semicolon
</body>
</html>
Alan Jeronimo
Alan Jeronimo
1,220 Points

Woww

How did I not see this ?? lol

Thank you very much my friend

:-)