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

error message after commenting

My code :

<?php

  // This is my name 
  $name = "Eph ";

  // $location = "Orlando, FL";
  $full_name = "Mike The Frog";
  $name = $full_name;


?>

<!DOCTYPE html>
<html>
  <head>
    <meta charset=utf-8>
    <title><?php echo $name ?>| Treehouse Profile</title>
    <link href="css/style.css" rel="stylesheet" />
  </head>

  <body>
    <section class="sidebar text-center">
      <div class="avatar">
        <img src="img/avatar.png" alt="Mike The Frog" title="<?php echo $name ?>">
      </div>
      <h1><?php echo $name ?></h1>
      <p><? echo $location ?></p>
      <hr />
      <p>Welcome to PHP Basics!</p>
      <hr />
      <ul class="social">
        <li><a href=""><span class="icon twitter"></span></a></li>
      </ul>
    </section>
    <section class="main">
      <p>Let's Get Started!</p>
      <p><?php echo "Hello World" ?></p>
    </section>
  </body>
</html>

After I commented the $location variable this error message shows up

Notice: Undefined variable: location in /home/treehouse/workspace/index.php on line 27

2 Answers

Erik S.
Erik S.
9,789 Points

This line is missing a php:

<p><? echo $location ?></p>

<p><?php echo $location ?></p>
Jeff Lemay
Jeff Lemay
14,268 Points

You're trying to echo a variable that does not exist. You can write a conditional to check if the variable exists and then echo it if so:

<?php
<p><?php if($location) { echo $location; } ?></p>
?>

You'd have to use isset() for that.

if(isset($location)) { echo $location; }
Jeff Lemay
Jeff Lemay
14,268 Points

Thank you for that, Jason. You also wouldn't wrap the paragraph in php tags...

<p><?php if(isset($location)) { echo $location; } ?></p>