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 (Retired) PHP Operators Operators

Preview page is blank

<?php


define("YEAR", 2014);
define("JOB_TITLE", "Teacher");
define("MAX_BADGES", 150000);
//This is my first name
$name = "Hampton";


$location = "Orlando, FL";
$full_name = "Hampton Paulk";
$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="<?php echo $name ?>">
      </div>
      <h1><?php echo $name ?></h1>
      <p><?php 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">
      <pre><?php 

$eye_colors = array(
'chris' =>'blue'
  'jane' =>'green'
 'jim' => 'brown'
);

print_r($eye_colors);

echo $eye_colors['chris'];


?></pre>
 </section>
  </body>
</html>

1 Answer

I think you have to separate the array values with commas like this:

<?php
$eye_colors = array(
'chris' =>'blue',
  'jane' =>'green',
 'jim' => 'brown'
);

See the PHP Manual.