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 trialvelochicdunord
4,816 PointsTrouble with connecting-wordpress-plugins-with-3rd-party-apis/parsing-json-code-challenge-part-2
Having a bit of trouble figuring out what I'm not doing correctly in this exercise. Would appreciate some input.
<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>
Any insight?
<?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++ ): ?>
<?php endfor; ?>
</ul>
1 Answer
velochicdunord
4,816 PointsAfter reading over other discussion, figured it out.
<ul>
<?php for( $i = 0; $i < count($my_plugin_profile->courses); $i++ ): ?>
<?php echo '<li>'.$my_plugin_profile ->{'courses'}[$i]->{'name'}.'</li>'; ?>
<?php endfor; ?>
</ul>
works.
<li><?php echo $my_plugin_profile->{'courses'}[$i]->{'name'}; ?></li>
should work, but wasn't accepted.