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 trialPartson Chizema
16,261 PointsI can't see where I am getting it wrong. Please help!!
CRUD: Reading data task 2 of 2.
<?php
function get_podcasts() {
include 'connection.php';
//add code here
try {
return $db->query('SELECT * FROM podcasts');
}catch (Exception $e) {
echo "Error!: ".$e->getMessage()."</br>";
if (empty(getMessage())){
echo array();
}
}
echo "<ul>";
foreach (get_podcasts() as $item){
echo "<li>".$item['title']." ".$item['website']."</li>";
}
echo "</ul>";
}
1 Answer
Partson Chizema
16,261 Pointsthe foreach statement must be outside the function curly brackets.