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 trialSundas Munir
551 PointsCan anyone point out mistake in the following code?
<?php $colors =array('red','blue','green'); echo $colors[2]; ?>
<?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];
?>
2 Answers
Julian Gutierrez
19,201 PointsArrays in php are zero based index so in your array red would be $colors[0], blue $colors[1], and green $colors[2].
Sundas Munir
551 PointsThanks Julian Gutierrez for your help :) I figured it out, I was getting confused between the second value and key value.
Nathan Crum
15,183 PointsNathan Crum
15,183 PointsThis code appears to work fine here -> http://phptester.net/ from PHP version 5.3 and up. What errors are you getting?