Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Christopher Hamb
1,484 PointsGetting stuck on Challenge task 1 of 1 for Stage 3 of How to build Wordpress Plugins
My code is attached and I keep getting bummer errors. What am I doing wrong?
Thanks
<?php
/*
{
"name": "Username",
"profile_name": "profile_username",
"profile_url": "http://myapi.net/profile_username"
"courses": [
{ "name": "WordPress Plugin Development" },
{ "name": "WordPress Theme Development" },
{ "name": "Introduction to PHP" }
]
}
*/
?>
<ul>
<?php for( $i = 0; $i < count($my_plugin_profile->courses); $i++ ): ?>
<li><?php echo $my_plugin_profile -> {'courses'} -> {'name'}[$i] ; ?></li>
<?php endfor; ?>
</ul>
Tim Holley
8,464 PointsTim Holley
8,464 PointsI haven't done this course myself yet, but just lending an eye...should there be a comma at the end of "profile_url"? and in your for statement, should it be a : or ;?