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

Quick Fix in php

Hello I am trying to learn PHP and it is going great! I just have one quick question.

What did I do wrong in my footer code for this to happen: http://i.imgur.com/f6UkIVS.png

Here is my footer code:

<div class="footer">

    <div class="wrapper">

        <ul>        
            <li><a href="http://twitter.com/treehouse">Twitter</a></li>
            <li><a href="https://www.facebook.com/TeamTreehouse">Facebook</a></li>
        </ul>

        <p>&copy;<?php echo date('Y'); ?> Twitch</p>

    </div>

</div>

</body> </html>

Did you fix the problem? what do you want to see on the page?

Nvm I just copied the project files and replaced mine thanks guys!

2 Answers

What has happened?

The footer text is not on the bottom where it should be.

Nothing appears to be wrong with the code, Have you tried looking into the header?