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 (2018) Building a Media Library in PHP A Simple PHP Example

osvaldo gonzalez
osvaldo gonzalez
2,167 Points

Add a PHP command that would display the name of our website, Personal Media Library, inside the <h1> tag.

Add a PHP command that would display the name of our website, Personal Media Library, inside the <h1> tag.

index.php
<!DOCTYPE html>
<html>
<body>
    <h1><?php echo "teamthreehouse "
      echo "Personal Media Library"?></h1>
</body>
</html>
osvaldo gonzalez
osvaldo gonzalez
2,167 Points

It is just to add the semocolon (;) after the echo statment , like here below: <!DOCTYPE html> <html> <body> <h1><?php echo "teamthreehouse " ; echo "Personal Media Library"; ?></h1> </body> </html>

1 Answer

Well, to achieve this you'll need to create a variable and store the name of your website inside it. For example:

<?php $nameOfWebsite = 'Personal Media Library'; ?>

<!DOCTYPE html>
<html>
<body>
    <h1><?php echo "teamthreehouse ".$nameOfWebsite; ?></h1>
</body>
</html> 

That'll be perfect and work with no problems.