<? header('Content-type: text/xml'); ?> <?php include "config.php"; ?> <rss version="2.0"> <channel> <title>Test Title</title> <description>This is an example description</description> <link>http://pixel2life.com</link> <? $sql = "SELECT * FROM images limit 15"; $result = mysql_query($sql); while($row = mysql_fetch_assoc($result)){ ?> <item> <title><?=$row['title']; ?></title> //I want to add image here. the image path is <?=$row['path']; ?> <author><?=$row['name']; ?></author> <link>news.php?id=<?=$row['id']; ?></link> </item> <? } ?> </channel> </rss>
<image> <title>Hello World</title> <url>images/logo_rss.gif</url> <link>http://www.somesite.com</link> </image>