So I think I followed the guidelines on images with RSS in my RSS feed here:
http://www.flashgamesnexus.com/nexusrss.php
I used the following code to generate the RSS:
<?php
print "<?xml version='1.0' ?>";
?>
<rss version="2.0">
<channel>
<title>Great Flash games</title>
<description>The best and highest rated flash games every day</description>
<link>http://www.flashgamesnexus.com</link>
<?php
include "connect.php";
$getgames="SELECT * from gametable order by gameid DESC limit 14";
$getgames2=mysql_query($getgames) or die("Could not get games");
while($getgames3=mysql_fetch_array($getgames2))
{
print "<item>";
print "<title>$getgames3[gamename]</title>";
print "<description>$getgames3[gamedescription]</description>";
print "<link>http://www.flashgamesnexus.com/flash-games/$getgames3[gameurl].php</link>";
print "<image>";
print "<url>$getgames3[imageurl]</url>";
print "<title>$getgames3[gamename]</title>";
print "<link>http://www.flashgamesnexus.com/flash-games/$getgames3[gameurl].php</link>";
print "</image>";
$content=$getgames3[gamecontent];
$urlseg=explode('"',$content);
$swfpath=$urlseg[1];
print "<url_swf>$swfpath</url_swf>";
print "</item>";
}
?>
</channel>
</rss>
Shows up, but the images don’t show, what should I do?