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 Simple PHP Application Creating the Menu and Footer Including the Footer and Adding Additional Pages

MAMP Localhost only displaying a blank page.

Any ideas? From reading other forums posts I made sure to ... 1) ensure that MAMP is loading ... the start page from MAMP loads fine displaying the MAMP home page. 2) restart my system

This started when I copied the downloaded zip files into the htdocs folder.

Frustrated

2 Answers

Fixed, two things happened here. Using Anvil, another tool that I recommend was using .pow. This has to be removed and can be done so easily in the settings of anvil. Second...

                &copy;<?php echo date('Y'); ?> Shirts 4 Mike 
            </p>

is not the same as

            <p>
                &copy;<?php echo date('Y');  Shirts 4 Mike ?>
            </p>

Moving the ?> made a big difference.

that ?> certainly does make a big difference, it tells the server when to stop rendering php and to send the html to the browser.

you could also have Shirts 4 Mike before the ?> by doing this, this is concatenating the date function with the string(text) by using a dot.

            <p>
                &copy;<?php echo date('Y') . " Shirts 4 Mike"; ?>
            </p>
            ```