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 Datatypes PHP Datatypes Challenge

Daniel Avila
PLUS
Daniel Avila
Courses Plus Student 1,474 Points

For question "Now using the $colors array, echo the second value.", I entered echo $colors[1]; - what did I do wrong?

Hello,

Having some trouble with the problem in the title. I have checked the syntax multiple times and tried the suggestions from a similar post by someone who had the same issue (see link for reference: https://teamtreehouse.com/forum/code-challange-question-now-using-the-colors-array-echo-the-second-value). No luck. I think this is a technical error. Help will be very much appreciated.

Thank you

index.php
<?php

//Place your code below this comment
$integer_one=1;
$integer_two=2;
$golden = 1.618;
$bool = TRUE;
var_dump($bool);
$colors = array('red','blue','green');
echo $colors[1];

?>

2 Answers

Chase Marchione
Chase Marchione
155,055 Points

Hi Daniel,

Once you get to Step 6, try removing:

var_dump($bool);

Seems that this info dump throws the compiler off.

Hope this helps!

Code challenges are super picky! Only submit the code that's asked for :)