Developer’s description of app: Download and listen to your podcasts without syncing with iTunes.
One of the biggest downfalls of iTunes is not being able to download podcasts over wifi without iTunes. MobileCast now allows you to! Just add the feed’s URL and the feed appears. You can choose which episode to download and listen right from the app.
“;
$i = 1;
foreach ($rss->items as $item) {
$href = $item[‘link’];
$title = $item[‘title’];
$description = $item[‘description’];
echo “
$description
“;
if ($i == 50 ) break;
$i = $i + 1;
}
echo “
“;
}
?>
Speak Your Mind
You must be logged in to post a comment.