Daniellez
04-23-2010, 08:53 PM
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Billboard Christian Songs Chart</title>
<link>http://www.billboard.com/</link>
<description />
<item>
<title>1: All Of Creation, MercyMe</title>
<link>http://www.billboard.com/charts/christian-songs</link>
<description>All Of Creation by MercyMe ranks #1</description>
<category>Christian Songs</category>
<pubDate>Sat, 01 May 2010 04:00:00 GMT</pubDate>
<guid isPermaLink="false">2010-05-01 00:00:00.0-10549440</guid>
</item>
</channel>
</rss>
Is it possible (perhaps using php) to separate the 1: from the example above and display it in a separate div? This chart displays the top 25.
Here's how it's currently being called ...
echo "<div>";
echo htmlentities($item['title']);
echo "</div>";
<rss version="2.0">
<channel>
<title>Billboard Christian Songs Chart</title>
<link>http://www.billboard.com/</link>
<description />
<item>
<title>1: All Of Creation, MercyMe</title>
<link>http://www.billboard.com/charts/christian-songs</link>
<description>All Of Creation by MercyMe ranks #1</description>
<category>Christian Songs</category>
<pubDate>Sat, 01 May 2010 04:00:00 GMT</pubDate>
<guid isPermaLink="false">2010-05-01 00:00:00.0-10549440</guid>
</item>
</channel>
</rss>
Is it possible (perhaps using php) to separate the 1: from the example above and display it in a separate div? This chart displays the top 25.
Here's how it's currently being called ...
echo "<div>";
echo htmlentities($item['title']);
echo "</div>";