Hey, blaaskaak, this is a cool tool - I'm using it successfully but am experiencing the same issue mentioned above, where, despite using three unique URL's, each Island displays information identical to the content of the first Custom Island.
Any insight would be much appreciated!
Let me show you the three pieces of code I'm using:
This one displays the headlines from Variety.com:
/* PHP CODE HERE, IF NECESSARY */
$display="";
$count=0;
$xml = getFeed('http://feeds.feedburner.com/variety/news/film');
foreach( $xml as $feed ) {
if ($count>=5) {
break;
}
if( ! $feed['title'] ) {
break;
}
$display.="<a href=\"".$feed['link']."\">".$feed['title']."</a><br /><br />";
$count++;
}
/* DO NOT CHANGE THE LINE BELOW */
$body = <<<EOF
$display
EOF;
/* DO NOT CHANGE THE LINE ABOVE */
The following two, though possessing unique URL's, display the same info as the code listed above.
/* PHP CODE HERE, IF NECESSARY */
$display="";
$count=0;
$xml = getFeed('http://feeds.feedburner.com/variety/reviews/film');
foreach( $xml as $feed ) {
if ($count>=5) {
break;
}
if( ! $feed['title'] ) {
break;
}
$display.="<a href=\"".$feed['link']."\">".$feed['title']."</a><br />";
$count++;
}
/* DO NOT CHANGE THE LINE BELOW */
$body = <<<EOF
$display
EOF;
/* DO NOT CHANGE THE LINE ABOVE */
/* PHP CODE HERE, IF NECESSARY */
$display="";
$count=0;
$xml = getFeed('http://link.brightcove.com/services/link/bcpid714034225?action=rss');
foreach( $xml as $feed ) {
if ($count>=5) {
break;
}
if( ! $feed['title'] ) {
break;
}
$display.="<a href=\"".$feed['link']."\">".$feed['title']."</a><br />";
$count++;
}
/* DO NOT CHANGE THE LINE BELOW */
$body = <<<EOF
$display
EOF;
/* DO NOT CHANGE THE LINE ABOVE */