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

Can anyone point out mistake in the following code?

<?php $colors =array('red','blue','green'); echo $colors[2]; ?>

index.php
<?php

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

?>

This code appears to work fine here -> http://phptester.net/ from PHP version 5.3 and up. What errors are you getting?

2 Answers

Julian Gutierrez
Julian Gutierrez
19,201 Points

Arrays in php are zero based index so in your array red would be $colors[0], blue $colors[1], and green $colors[2].

Thanks Julian Gutierrez for your help :) I figured it out, I was getting confused between the second value and key value.